mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 21:52:02 +00:00
7 lines
138 B
C
7 lines
138 B
C
![]() |
#include <mqueue.h>
|
||
|
|
||
|
int mq_send(mqd_t mqd, const char *msg, size_t len, unsigned prio)
|
||
|
{
|
||
|
return mq_timedsend(mqd, msg, len, prio, 0);
|
||
|
}
|