diff options
Diffstat (limited to 'libc-top-half/musl/compat/time32/mq_timedsend_time32.c')
-rw-r--r-- | libc-top-half/musl/compat/time32/mq_timedsend_time32.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/compat/time32/mq_timedsend_time32.c b/libc-top-half/musl/compat/time32/mq_timedsend_time32.c new file mode 100644 index 0000000..93b697a --- /dev/null +++ b/libc-top-half/musl/compat/time32/mq_timedsend_time32.c @@ -0,0 +1,9 @@ +#include "time32.h" +#include <mqueue.h> +#include <time.h> + +int __mq_timedsend_time32(mqd_t mqd, const char *msg, size_t len, unsigned prio, const struct timespec32 *ts32) +{ + return mq_timedsend(mqd, msg, len, prio, ts32 ? (&(struct timespec){ + .tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec}) : 0); +} |