blob: 1acb1b78d20bbda4ce72a6e4bb38ab76702f4192 [file] [log] [blame]
#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);
}