restart
重新启动线程。
格式
restart <tid> <argment>
说明
[root@sylixos:/root]# help restart
restart a thread with specify argument.
notice : tid is HEX.
restart tid argument
[root@sylixos:/root]#
此命令用来重新启动线程。
备注:
线程 ID 是十六进制的,只能重启内核线程。
样例
- 在 Bsp 的 main 函数中创建线程。
static void * task0 (void *arg)
{
printf("hello task\n");
while(1);
return (NULL);
}
- 重新启动,参数给线程 ID,重新启动线程。
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