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
document and make explicit desired noinline property for __init_libc
[musl.git]
/
src
/
mq
/
mq_send.c
blob
1acb1b78d20bbda4ce72a6e4bb38ab76702f4192
1
#include <mqueue.h>
2
3
int
mq_send
(
mqd_t mqd
,
const char
*
msg
,
size_t
len
,
unsigned
prio
)
4
{
5
return
mq_timedsend
(
mqd
,
msg
,
len
,
prio
,
0
);
6
}