We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c1166e0
k230
GCC
1.后台执行一个程序:/bin/killme.elf & 2.查看进程的ID:list_process,找出刚后台执行应用的pid 3.kill掉后台进程:kill $pid -s 2 4.list_process查看现有的进程 5.发现后台程序还在
#include <stdio.h> #include <rtthread.h> int main() { printf("Please kill me.\n"); while (1) { rt_thread_mdelay(100); } return 0; }
No response
The text was updated successfully, but these errors were encountered:
我这用kill 1是可以结束进程的,也可以用killall FILENAME #9935
Sorry, something went wrong.
heyuanjie87
No branches or pull requests
RT-Thread Version
c1166e0
Hardware Type/Architectures
k230
Develop Toolchain
GCC
Describe the bug
1.后台执行一个程序:/bin/killme.elf &
2.查看进程的ID:list_process,找出刚后台执行应用的pid
3.kill掉后台进程:kill $pid -s 2
4.list_process查看现有的进程
5.发现后台程序还在
Other additional context
No response
The text was updated successfully, but these errors were encountered: