summaryrefslogblamecommitdiff
path: root/src/mq/mq_timedreceive.c
blob: ad705f8b3a6afd7adb0fab86fc4cdc874e67317a (plain) (tree)
1
2
3
4
5
6
7






                                                                                                    
#include <mqueue.h>
#include "syscall.h"

ssize_t mq_timedreceive(mqd_t mqd, char *msg, size_t len, unsigned *prio, const struct timespec *at)
{
	return syscall(SYS_mq_timedreceive, mqd, msg, len, prio, at);
}