WaitForSingleObject怎么使用,想用它在windows环境下实现类似linux下的sem_wait功能。
发布网友
发布时间:2022-04-24 04:57
我来回答
共1个回答
热心网友
时间:2023-10-30 03:50
#include <semaphore.h>
int sem_wait(sem_t *sem);
int sem_trywait(sem_t *sem);
int sem_timedwait(sem_t *sem, const struct timespec *abs_timeout);
Link with -lrt or -pthread.
自己看最后一句....手册里面写着呢....link with -lrt or -pthread
热心网友
时间:2023-10-30 03:50
#include <semaphore.h>
int sem_wait(sem_t *sem);
int sem_trywait(sem_t *sem);
int sem_timedwait(sem_t *sem, const struct timespec *abs_timeout);
Link with -lrt or -pthread.
自己看最后一句....手册里面写着呢....link with -lrt or -pthread
热心网友
时间:2023-10-30 03:50
#include <semaphore.h>
int sem_wait(sem_t *sem);
int sem_trywait(sem_t *sem);
int sem_timedwait(sem_t *sem, const struct timespec *abs_timeout);
Link with -lrt or -pthread.
自己看最后一句....手册里面写着呢....link with -lrt or -pthread