summaryrefslogtreecommitdiff
path: root/lib/libc/sys/mqueue/mq_timedsend.c
blob: 3f53309571da114161eaa3d9d949ebbb32ea6a67 (plain)
1
2
3
4
5
6
7
8
9
#include <mqueue.h>
#include <stddef.h>
#include <syscall.h>
#include <time.h>

int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio, const struct timespec *abstime)
{
	return syscall(mq_timedsend, mqdes, msg_ptr, msg_len, msg_prio, abstime);
}