我正在将pthreads-win32用于Win32应用程序上的线程。我正在使用发布在here上的第一个函数来计算时间规格。
对sem_timedwait()
的呼叫似乎正在等待指定的ts
时间,但是,每次完成,我都会收到以下消息:
等待信号量时出错:没有错误
我已经检查了sem_timedwait.c
here的文件,它们指定了相同的errno值并返回了值。因此,我不知道为什么它会随此errno退出,并且想知道为什么。
#ifdef _WIN32
#define HAVE_STRUCT_TIMESPEC
#endif // _WIN32
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <pthread.h>
#include <semaphore.h>
#include "include.h"
// Platform includes
#ifdef _WIN32
#include <sched.h>
#include <windows.h>
#else
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#endif // _WIN32
// ...
sem_init(&job_semaphore, 0, 0);
// ...
// Set wait time relative to current time (semaphore wait time 10s)
#ifdef _WIN32
clockGetTime(0, &ts);
#else
if (clock_gettime(CLOCK_REALTIME, &ts) == -1) {
perror("Error getting current time");
}
#endif // _WIN32
ts.tv_sec += 10;
while ((s = sem_timedwait(&job_semaphore, &ts)) == -1 && errno == EINTR) {
// Restart if interrupted by handler
continue;
}
// Timeout or error occurred
if (s == -1) {
if (errno != ETIMEDOUT) {
perror("Error waiting on semaphore");
}
}
// Job to process
else {
}
clockGetTime的代码
#define HAVE_STRUCT_TIMESPEC
#include <windows.h>
#include <pthread.h>
int clockGetTime(int clock_filler, struct timespec *spec) { //C-file part
__int64 wintime; GetSystemTimeAsFileTime((FILETIME*)&wintime);
wintime -= 116444736000000000i64; //1jan1601 to 1jan1970
spec->tv_sec =(time_t) (wintime / 10000000i64); //seconds
spec->tv_nsec =(long) (wintime % 10000000i64 * 100); //nano-seconds
return 0;
}