add support for POSIX message queues, except mq_notify

This commit is contained in:
Rich Felker
2011-06-07 01:52:27 -04:00
parent cbf35978a9
commit ab11386aaa
11 changed files with 133 additions and 0 deletions

6
src/mq/mq_send.c Normal file
View File

@ -0,0 +1,6 @@
#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);
}