Posted on 2009-08-05 11:20
Prayer 閱讀(3698)
評論(0) 編輯 收藏 引用 所屬分類:
LINUX/UNIX/AIX
使用pthread_kill函數檢測一個線程是否還活著的程序,在linux環境下gcc編譯通過,現將代碼貼在下面:
/******************************* pthread_kill.c *******************************/
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <errno.h>
void *func1()/*1秒鐘之后退出*/
{
sleep(1);
printf("線程1(ID:0x%x)退出。\n",(unsigned int)pthread_self());
pthread_exit((void *)0);
}
void *func2()/*5秒鐘之后退出*/
{
sleep(5);
printf("線程2(ID:0x%x)退出。\n",(unsigned int)pthread_self());
pthread_exit((void *)0);
}
void test_pthread(pthread_t tid) /*pthread_kill的返回值:成功(0) 線程不存在(ESRCH) 信號不合法(EINVAL)*/
{
int pthread_kill_err;
pthread_kill_err = pthread_kill(tid,0);
if(pthread_kill_err == ESRCH)
printf("ID為0x%x的線程不存在或者已經退出。\n",(unsigned int)tid);
else if(pthread_kill_err == EINVAL)
printf("發送信號非法。\n");
else
printf("ID為0x%x的線程目前仍然存活。\n",(unsigned int)tid);
}
int main()
{
int ret;
pthread_t tid1,tid2;
pthread_create(&tid1,NULL,func1,NULL);
pthread_create(&tid2,NULL,func2,NULL);
sleep(3);/*創建兩個進程3秒鐘之后,分別測試一下它們是否還活著*/
test_pthread(tid1);/*測試ID為tid1的線程是否存在*/
test_pthread(tid2);/*測試ID為tid2的線程是否存在*/
exit(0);
}
編譯:gcc -o pthread_kill -lpthread pthread_kill.c
運行:./pthread_kill
///////////////////////// 運行結果 /////////////////////////////
線程1(ID:0xb7e95b90)退出。
ID為0xb7e95b90的線程不存在或者已經退出。
ID為0xb7694b90的線程目前仍然存活。