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

线程退出前操作

时间:2014-06-15 13:13:00      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

#include <unistd.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>

void cleanup()
{
    printf("cleanup\n");
}

void *test_cancel(void)
{
    pthread_cleanup_push(cleanup,NULL);
    printf("test_cancel\n");

    while(1)
    {
        printf("test message\n");
        sleep(1);
    }
    pthread_cleanup_pop(0);
}
int main()
{
    pthread_t tid;
    pthread_create(&tid,NULL,(void *(*)(void *))test_cancel,NULL);
    sleep(2);
    pthread_cancel(tid);
    pthread_join(tid,NULL);
    return 0;
}

bubuko.com,布布扣

线程退出前操作,布布扣,bubuko.com

线程退出前操作

标签:style   class   blog   code   http   color   

原文地址:http://www.cnblogs.com/lakeone/p/3789274.html

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