码迷,mamicode.com
首页 > 编程语言 > 详细

.取消线程

时间:2014-09-27 01:46:28      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   ar   sp   div   art   

/*0.取消线程 
  int pthread_cancel(pthread_t thread);
设置取消点
  void pthread_testcancel(void);
测试是否接收到取消请求,如果有,结束线程。
例子:*/
#include <stdlib.h>
#include <pthread.h>
#include <stdio.h>
#include <sched.h>
int a = 0;
void *thread1(void *arg)
{
         pthread_testcancel(); 这个函数非常重要要和 pthread_cancel(t1),结合起来使用;
         a = 10; 
} 
/*如果改为:
 int a = 0;
void *thread1(void *arg)
{
         a = 10;
       pthread_testcancel();
 }
运行结果:a值被修改了
main start
main end, a=10*/
int main(int argc, char *argv[])
{       
        pthread_t  t1, t2, t3;
        int ret, i;
        printf("main start\n");
        ret = pthread_create(&t1, NULL, thread1, NULL);
        pthread_cancel(t1);
        pthread_join(t1, NULL);
        sleep(3);
        printf("main end, a=%d\n", a);
      return 0;
}
/*运行结果:在取消点处程序结束,a值未该。
main start
main end, a=0*/

 

.取消线程

标签:style   blog   color   io   使用   ar   sp   div   art   

原文地址:http://www.cnblogs.com/leijiangtao/p/3995815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!