diff options
Diffstat (limited to 'libc-top-half/musl/compat/time32/mtx_timedlock_time32.c')
-rw-r--r-- | libc-top-half/musl/compat/time32/mtx_timedlock_time32.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/compat/time32/mtx_timedlock_time32.c b/libc-top-half/musl/compat/time32/mtx_timedlock_time32.c new file mode 100644 index 0000000..a01f09b --- /dev/null +++ b/libc-top-half/musl/compat/time32/mtx_timedlock_time32.c @@ -0,0 +1,9 @@ +#include "time32.h" +#include <time.h> +#include <threads.h> + +int __mtx_timedlock_time32(mtx_t *restrict m, const struct timespec32 *restrict ts32) +{ + return mtx_timedlock(m, !ts32 ? 0 : (&(struct timespec){ + .tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec})); +} |