summaryrefslogtreecommitdiff
path: root/lib/libc/mqueue/mq_timedsend.c
blob: 228a5d06b0db76bcb7afff113dbe7ed9d2a15cc5 (plain)
1
2
3
4
5
6
7
8
9
#include <mqueue.h>
#include <syscall.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);
}