1MQ_GETSETATTR(2) Linux Programmer's Manual MQ_GETSETATTR(2)
2
3
4
6 mq_getsetattr - get/set message queue attributes
7
9 #include <mqueue.h> /* Definition of struct mq_attr */
10 #include <sys/syscall.h> /* Definition of SYS_* constants */
11 #include <unistd.h>
12
13 int syscall(SYS_mq_getsetattr, mqd_t mqdes,
14 const struct mq_attr *newattr, struct mq_attr *oldattr);
15
17 Do not use this system call.
18
19 This is the low-level system call used to implement mq_getattr(3) and
20 mq_setattr(3). For an explanation of how this system call operates,
21 see the description of mq_setattr(3).
22
24 This interface is nonstandard; avoid its use.
25
27 Never call it unless you are writing a C library!
28
30 mq_getattr(3), mq_overview(7)
31
33 This page is part of release 5.13 of the Linux man-pages project. A
34 description of the project, information about reporting bugs, and the
35 latest version of this page, can be found at
36 https://www.kernel.org/doc/man-pages/.
37
38
39
40Linux 2021-03-22 MQ_GETSETATTR(2)