xref: /aosp_15_r20/external/musl/src/thread/mtx_timedlock.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <threads.h>
2 #include <pthread.h>
3 #include <errno.h>
4 
mtx_timedlock(mtx_t * restrict m,const struct timespec * restrict ts)5 int mtx_timedlock(mtx_t *restrict m, const struct timespec *restrict ts)
6 {
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;
12 	}
13 }
14