summaryrefslogtreecommitdiff
path: root/src/mq/mq_timedsend.c
blob: 1c00aa0b28660e0dadc32c4575bfccc00f5fa5c6 (plain) (blame)
1
2
3
4
5
6
7
#include <mqueue.h>
#include "syscall.h"

int mq_timedsend(mqd_t mqd, const char *msg, size_t len, unsigned prio, const struct timespec *at)
{
	return syscall_cp(SYS_mq_timedsend, mqd, msg, len, prio, at);
}