Message queue descriptor.
Closes the message queue descriptor mqdes.
Query status and attributes of message queue mqdes.
Register for notification when a message is available
Establish connection between a process and a message queue name.
Receive the oldest message with the highest priority the message queue
Add a message to a message queue.
Receive the oldest message with the highest priority the message queue, wait up to a certain timeout.
Add a message to a message queue, block up to a certain time if the queue is full.
Remove the specified message queue name.
Used in getting and setting the attributes of a message queue.
D header file for Posix Message Queues
Defines external functions required to manage Posix Message Queues
mq_open(3) open a message queue mq_close(3) close a message queue mq_unlink(3) remove a message queue mq_send(3) send a message mq_receive(3) receive a message mq_timedsend(3) send a message with a timeout (linux specific) mq_timedreceive(3) receive a message with a timeout (linux specific) mq_getattr(3) get message queue attributes mq_setattr(3) set message queue attributes mq_notify(3) register asynchronous notify