winston 发表于 2012-2-19 22:23:42

关于SLEEP函数

以前很喜欢用sleep和usleep函数来做定时器。确实方便啊。但是昨天在公司用这个函数写了个东西,被说这2个函数最好别在多线程里面使用。然后叫我改一个定时器方案。查看了man文档。发现sleep还真有问题。里面就写得有BUG:


BUGS
sleep() may be implemented using SIGALRM; mixing calls to alarm() and sleep() is a bad idea.




       Using longjmp() from a signal handler or modifying the handling of SIGALRM while sleeping will cause undefined results.
说到了用sleep在多线程的不适合。因为是用的信号驱动来实现的。可能要引起不确定的因素。后来去网上找了下其他的方法,这里把方法贴出来。一个在多线程中比较好的实现是利用的pthread库里面的pthread_cond_timewait()函数来实现。下面贴出来代码。都比较基础。

void thread_sleep(int second)
{
   /*time wait */
    struct timespec outtime;
    pthread_cond_t cond;
    pthread_mutex_t mutex;

    /*timer init */
    pthread_mutex_init(&mutex, NULL);
    pthread_cond_init(&cond, NULL);

    pthread_mutex_lock(&mutex);
    outtime.tv_sec = time(NULL) + second;
    outtime.tv_nsec = 0;
    pthread_cond_timedwait(&cond, &mutex, &outtime);
    pthread_mutex_unlock(&mutex);
}


作者:yutao52shi 发表于2012-2-19 17:18:08 原文链接

页: [1]
查看完整版本: 关于SLEEP函数