mq_getattr - get message queue attributes (REALTIME)
#include <mqueue.h> int mq_getattr(mqd_t mqdes, struct mq_attr *mqstat);
The mqdes argument specifies a message queue descriptor. The mq_getattr() function is used to get status information and attributes of the message queue and the open message queue description associated with the message queue descriptor. The results are returned in the mq_attr structure referenced by the mqstatargument.Upon return, the following members will have the values associated with the open message queue description as set when the message queue was opened and as modified by subsequent mq_setattr() calls:
- mq_flags
The following attributes of the message queue are returned as set at message queue creation.
- mq_maxmsg
- mq_msgsize
- mq_curmsgs
- The number of messages currently on the queue.
Upon successful completion, the mq_getattr() function returns zero. Otherwise, the function returns -1 and sets errno to indicate the error.
The mq_getattr() function will fail if:
- [EBADF]
- The mqdes argument is not a valid message queue descriptor.
- [ENOSYS]
- The function mq_getattr() is not supported by this implementation.
None.
None.
mq_open(), mq_send(), mq_setattr() <mqueue.h>, msgctl(), msgget(), msgrcv(), msgsnd().
Derived from the POSIX Realtime Extension (1003.1b-1993/1003.1i-1995)