- 相关推荐
c语言线程终止练习示例
c语言线程
代码如下:
#include
#include
#include
void *t1(void *args)
{
return (void *) 0;
}
void *t2(void *args)
{
printf("thread 2 param[args] = %dn", args);
pthread_exit((void *) 3);
}
void *t3(void *args) {
while(1)
{
printf("thread 3 is workingn");
sleep(1);
}
}
int main(int argc, char *argv[])
{
pthread_t thread;
int err;
void *status;
printf("creating thread 1n");
err = pthread_create(&thread, NULL, t1, NULL);
if(err)
{
printf("Can not created thread 1n");
exit(-1);
}
pthread_join(thread, &status);
printf("thread 1 exit return code %dnn", status);
printf("creating thread 2n");
err = pthread_create(&thread, NULL, t2, (void *) 9);
if(err)
{
printf("Can not created thread 2n");
exit(-2);
}
pthread_join(thread, &status);
printf("thread 2 exit return code %dnn", status);
printf("creating thread 3n");
err = pthread_create(&thread, NULL, t3, NULL);
if(err)
{
printf("Can not created thread 3n");
exit(-3);
}
sleep(10);
pthread_cancel(thread);
pthread_join(thread, &status);
printf("thread 3 exit return code %dn", status);
return 1;
}
【c语言线程终止练习示例】相关文章:
C语言模拟试题练习12-09
C语言考点题型练习03-28
C语言高分预测题练习12-12
C语言精选模拟练习题03-28
C语言考前练习试题及答案03-28
C语言考前模拟练习题03-27
C语言程序改错题练习03-27
C语言考试模拟练习题03-28
C语言新增无纸化真考题练习03-28