musl-tcc/src/thread/mtx_timedlock.c

14 lines
335 B
C

#include <threads.h>
#include <pthread.h>
#include <errno.h>
int mtx_timedlock(mtx_t *restrict m, const struct timespec *restrict ts)
{
int ret = __pthread_mutex_timedlock((pthread_mutex_t *)m, ts);
switch (ret) {
default: return thrd_error;
case 0: return thrd_success;
case ETIMEDOUT: return thrd_timedout;
}
}