blob: 099f213a40673e947f3f2efa1ea24d988ce9b4e2 (
plain) (
tree)
|
|
#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_cp(SYS_mq_timedreceive, mqd, msg, len, prio, at);
}
|