gpt4 book ai didi

c - 在执行 sem_timedwait 时,我将如何应对系统时间的变化?

转载 作者:太空狗 更新时间:2023-10-29 15:00:25 32 4
gpt4 key购买 nike

假设我有一个程序使用 sem_timedwait 等待 100 毫秒(获取当前时间,加上 100 毫秒,将结果用作 abs_timeoutcf. man page ).现在碰巧系统时间在等待信号量时由外部进程 (ntp) 设置。

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

有办法解决这个问题吗?

最佳答案

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

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),因此这正是您想要的此类应用程序。

你说,

Now it happens that the system time gets set by an external process (ntp) while waiting for the semaphore.

但情况比这更糟...系统时钟可能会在您调用 clock_gettime() 之后但在您调用 sem_timedwait() 之前调整...所以据它所知,您希望 sem_timedwait() 等待两天。

关于c - 在执行 sem_timedwait 时,我将如何应对系统时间的变化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29153310/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com