作者oeoe7788 (oeoe)
看板LinuxDev
標題[問題] linux c裡有可以kill thread的function嗎?
時間Fri Aug 21 16:55:41 2009
請問一下各位
在linux c裡有可以kill thread的function嗎?
如下~
有類似kill_thread(thread_id)????的function嗎?
感謝!!!
-----------------------------------------
void Test()
{
while(1)
printf("123\n");
}
void main()
{
int conut = 0;
pthread_create(&thread_id, NULL, &Test, NULL);
if (conut < 10)
sleep(5);
//kill_thread(thread_id)????
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 220.133.37.155
1F:推 antory:pthread_cancel() 08/22 14:25
2F:→ wheelz:pthread_kill() 09/04 18:40