在进行sem_timedwait时,我如何应对系统时间的变化?

时间:2015-03-19 19:26:45

标签: c unix semaphore

说我已经使用sem_timedwait的程序等待100毫秒(获取当前时间,添加100毫秒,将结果用作abs_timeoutcf. man page )。现在,在等待信号量时,系统时间由外部进程(ntp)设置。

如果我们运气不好,系统时间设置为过去2天。这会导致sem_timedwait等待 2天和100毫秒

有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:5)

您可以使用条件变量,并选择单调时钟作为参考时钟。信号量有点老,我会避免在新的应用程序中使用它们。如果愿意,可以使用条件变量和互斥量轻松实现信号量。

pthread_condattr_t cattr;
pthread_condattr_init(&cattr);
pthread_condattr_setclock(&cattr, CLOCK_MONOTONIC);

pthread_cond_t cond;
pthread_cond_init(&cond, &cattr);

struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
ts.tv_nsec += 100000000;
if (ts.tv_nsec >= 1000000000) {
    ts.tv_nsec -= 1000000000;
    ts.tv_sec += 1;
}
int r = pthread_cond_timedwait(&cond, &mutex, &ts);
if (r == ETIMEDOUT) {
    // ...
} else {
    // ...
}

单调时钟“不受系统时间内不连续跳跃的影响”(man clock_gettime),所以它正是你想要的这种应用。

你说,

  

现在,在等待信号量时,外部进程(ntp)会设置系统时间。

但情况比这更糟糕......系统时钟可能会在您致电clock_gettime()之后但在致电sem_timedwait()之前调整......所以据他所知,你想要{{等待两天。