Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
mq
/
mq_timedreceive.c
blob: 2cef6a86bff8c99498fe62acbd3411be6e5a45e5 [
file
] [
log
] [
blame
]
#include
<mqueue.h>
#include
"syscall.h"
ssize_t
mq_timedreceive
(
mqd_t
mqd
,
char
*
restrict msg
,
size_t
len
,
unsigned
*
restrict prio
,
const
struct
timespec
*
restrict at
)
{
return
syscall_cp
(
SYS_mq_timedreceive
,
mqd
,
msg
,
len
,
prio
,
at
);
}