1MQ_GETSETATTR(2) Linux Programmer's Manual MQ_GETSETATTR(2)
2
3
4
6 mq_getsetattr - get/set message queue attributes
7
9 #include <sys/types.h>
10 #include <mqueue.h>
11
12 mqd_t mq_getsetattr(mqd_t mqdes, struct mq_attr *newattr,
13 struct mq_attr *oldattr);
14
16 Do not use this system call.
17
18 This is the low-level system call used to implement mq_getattr(3) and
19 mq_setattr(3). For an explanation of how this system call operates,
20 see the description of mq_setattr(3).
21
23 This interface is non-standard; avoid its use.
24
26 Glibc does not provide a wrapper for this system call; call it using
27 syscall(2). (Actually, never call it unless you are writing a C
28 library!)
29
31 mq_getattr(3), mq_overview(7)
32
34 This page is part of release 3.22 of the Linux man-pages project. A
35 description of the project, and information about reporting bugs, can
36 be found at http://www.kernel.org/doc/man-pages/.
37
38
39
40Linux 2007-06-01 MQ_GETSETATTR(2)