gpt4 book ai didi

linux - 在 linux 中等待条件变量时,当 condition_timed_wiat 时间过去时会发生什么

转载 作者:太空宇宙 更新时间:2023-11-04 12:53:42 25 4
gpt4 key购买 nike

在 linux 中等待条件变量时,当 condition_timed_wiat() 时间过去时会发生什么

struct timeval tv;
struct timespec ts;

gettimeofday(&tv, NULL);
ts.tv_sec = time(NULL) + timeInMs / 1000;
ts.tv_nsec = tv.tv_usec * 1000 + 1000 * 1000 * (timeInMs % 1000);
ts.tv_sec += ts.tv_nsec / (1000 * 1000 * 1000);
ts.tv_nsec %= (1000 * 1000 * 1000);

n = pthread_cond_timedwait(&condition, &mutex, &ts);

最佳答案

该函数返回 ETIMEDOUT(这是一个非零值)并且互斥体未被锁定。

关于linux - 在 linux 中等待条件变量时,当 condition_timed_wiat 时间过去时会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36340310/

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