免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1793 | 回复: 1

请问关于pthread_cleanup_push的问题 [复制链接]

论坛徽章:
0
发表于 2004-11-30 12:00 |显示全部楼层
void    clean ( void * p )
{
        printf ( "clean()\n" );
}

void *  thread ( void * p )
{

        pthread_cleanup_push( clean, NULL);
        printf ( "thread sleep\n" );
        sleep (10);
        pthread_cleanup_pop(0);
}

int     main ()
{
        pthread_t id;
        pthread_mutexattr_t attr;
        pthread_create ( &id, NULL, thread, NULL );
        printf ( "main sleep\n";
        sleep(3);
        printf ( "cancel thread:%u\n", id );
        pthread_cancel ( id );
        return 0;
}

输出:
thread sleep
main sleep
cancel thread:1082399936

//////////////////////////////////////////////////////////
不明白为何没有输出clean()
也就是pthread_cleanup_push根本不起作用
那位大虾能说说原因吗?
    多谢

论坛徽章:
0
发表于 2007-11-20 14:33 |显示全部楼层
sleep (10);
        pthread_cleanup_pop(0);
改为
        sleep (10);
        pthread_cleanup_pop(1);
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP