我尝试在代码中实现pthread
功能。不幸的是,我无法正确实现函数pthread_cond_timedwait()
。
在Linux中一切正常。但在Windows中,此函数始终返回错误代码10060.这是我的简单代码:
#include <fstream>
#include <Windows.h>
#define HAVE_STRUCT_TIMESPEC
#include <pthread.h>
int main()
{
int rcTimedwait = 0;
struct timespec timeout;
pthread_mutex_t mutex;
pthread_cond_t condVar;
pthread_mutex_init(&mutex, NULL);
pthread_cond_init(&condVar, NULL);
timeout.tv_sec = 1;
timeout.tv_nsec = 0;
SetLastError(0);
errno = 0;
pthread_mutex_lock(&mutex);
rcTimedwait = pthread_cond_timedwait(&condVar, &mutex, &timeout);
printf("rcTimedwait = %d\n", rcTimedwait);
printf("errno = %d GetLastError = %d\n", errno, GetLastError());
printf("tv_sec = %d tv_nsec = %d\n", timeout.tv_sec, timeout.tv_nsec);
pthread_mutex_unlock(&mutex);
pthread_cond_destroy(&condVar);
pthread_mutex_destroy(&mutex);
return 0;
}
并输出:
rcTimedwait = 10060
errno = 0 GetLastError = 0
tv_sec = 1 tv_nsec = 0
提前感谢您的帮助,对不起我的英语
答案 0 :(得分:2)
pthread_cond_timedwait()
返回10060,看起来像WSAETIMEDOUT的值。我很惊讶该功能没有像预期的那样返回ETIMEDOUT。
无论如何,它是一个超时,这并不奇怪,因为在你的例子中,没有其他线程可以发出条件变量的信号。