重新启动线程
使用 restart
命令可以用来重新启动线程。
restart tid pid
在 BSP的 main 函数中创建线程,该线程中每次启动输出一次打印。
static void * task0 (void *arg)
{
printf("hello task\n");
while(1);
return (NULL);
}
查看线程号和进程号,然后重新启动线程,查看输出结果。
t_main 4010013 0 200 J0IN 71 0 0 0
t_tshell 4010014 0 150 RDY 1503 0 0 0
pthread 4010015 0 250 RDY 1503 0 0 0
thread:20
[root@sylixos:/]# restart 4010015 0
[root@sylixos:/]# hello task