synccall: add separate exit_sem to fix thread release logic bug
[musl.git] / src / thread / mtx_timedlock.c
blobd22c8cf448163f148b016bfd72f81047124a6673
1 #include <threads.h>
2 #include <pthread.h>
3 #include <errno.h>
5 int mtx_timedlock(mtx_t *restrict m, const struct timespec *restrict ts)
7 int ret = __pthread_mutex_timedlock((pthread_mutex_t *)m, ts);
8 switch (ret) {
9 default: return thrd_error;
10 case 0: return thrd_success;
11 case ETIMEDOUT: return thrd_timedout;