usleep是否创建线程取消点?

时间:2010-07-15 13:56:33

标签: c++ linux pthreads

根据Linux联机帮助页,只有以下函数是线程取消点:pthread_join,pthread_cond_wait,pthread_cond_timedwait,pthread_testcancel,sem_wait,sigwait。在我的测试程序中,线程在usleep上退出。线程功能:

void* ThreadFunction(void* arg)
{
    int n = 0;

    pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
    pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL);

    for(;;)
    {
        ostringstream s;
        s << "Thread iteration " << n++;
        PrintLine(s.str().c_str());

        usleep(500000);

        PrintLine("Check whether thread canceled...");
        pthread_testcancel();
        PrintLine("Thread is not canceled - continue");
    }

    pthread_exit(NULL);
}

当main函数执行pthread_cancel时,我希望ThreadFunction打印的最后一行是“检查线程是否被取消......”。但是,它总是在退出之前打印“Thread iteration ...”。这意味着,usleep是取消点。我认为这是正确的 - 任何睡眠功能都必须是可取消的。但这不是在文档中写的。

如果注释了usleep行,那么最后一个线程输出行是“检查线程是否被取消...”,正如我所料。

2 个答案:

答案 0 :(得分:9)

POSIX规范中提供了取消点和可选取消点的完整列表:

http://opengroup.org/onlinepubs/007908775/xsh/threads.html

usleep()是强制取消点

答案 1 :(得分:0)

我在Mac OS上的Instrument.app中看到了pthread_testcanel的调用树,它调用了OSSpinLockLock函数。

但似乎没有睡觉。