Open
Description
RT-Thread Version
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
#include <stdio.h>
#include <rtthread.h>
int main()
{
printf("Please kill me.\n");
while (1)
{
rt_thread_mdelay(100);
}
return 0;
}
No response