Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
mq
/
mq_setattr.c
blob: 814dbe7d582d3111ad4f1c3ee85f7f07c8693265 [
file
] [
log
] [
blame
]
#include
<mqueue.h>
#include
"syscall.h"
int
mq_setattr
(
mqd_t
mqd
,
const
struct
mq_attr
*
restrict
new
,
struct
mq_attr
*
restrict old
)
{
return
syscall
(
SYS_mq_getsetattr
,
mqd
,
new
,
old
);
}