diff options
Diffstat (limited to 'src/threads/mtx_timedlock.c')
| -rw-r--r-- | src/threads/mtx_timedlock.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/threads/mtx_timedlock.c b/src/threads/mtx_timedlock.c new file mode 100644 index 00000000..a24c213d --- /dev/null +++ b/src/threads/mtx_timedlock.c @@ -0,0 +1,7 @@ +#include <threads.h> +#include <pthread.h> + +int mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts) +{ + return pthread_mutex_timedlock(mtx, ts); +} |
