1 #include <mqueue.h>
2 #include "syscall.h"
3 
mq_timedreceive(mqd_t mqd,char * restrict msg,size_t len,unsigned * restrict prio,const struct timespec * restrict at)4 ssize_t mq_timedreceive(mqd_t mqd, char *restrict msg, size_t len, unsigned *restrict prio, const struct timespec *restrict at)
5 {
6 	return syscall_cp(SYS_mq_timedreceive, mqd, msg, len, prio, at);
7 }
8