blob: 9a68db72a158b2257973dbc1fafeff3124eeb421 (
plain)
1
2
3
4
5
6
7
|
#include <threads.h>
#include <pthread.h>
int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timespec *restrict ts)
{
return pthread_cond_timedwait(cond, mtx, ts);
}
|