aboutsummaryrefslogtreecommitdiff
path: root/src/thread/mtx_timedlock.c
blob: 84fb8a7f9754f5f5bea5a162c26c0bed758236de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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;
	}
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif