repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
synccall: add separate exit_sem to fix thread release logic bug
[musl.git]
/
src
/
mq
/
mq_receive.c
blob
0b1bb4e4fb849e2b233e5f9ba1213cdd123251ab
1
#include <mqueue.h>
2
3
ssize_t
mq_receive
(
mqd_t mqd
,
char
*
msg
,
size_t
len
,
unsigned
*
prio
)
4
{
5
return
mq_timedreceive
(
mqd
,
msg
,
len
,
prio
,
0
);
6
}