]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man2/mq_getsetattr.2
getent.1, intro.1, time.1, _exit.2, _syscall.2, accept.2, access.2, acct.2, adjtimex...
[thirdparty/man-pages.git] / man2 / mq_getsetattr.2
1 '\" t
2 .\" Hey Emacs! This file is -*- nroff -*- source.
3 .\"
4 .\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
5 .\"
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date. The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein. The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\"
26 .TH MQ_GETSETATTR 2 2012-07-13 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 mq_getsetattr \- get/set message queue attributes
29 .SH SYNOPSIS
30 .nf
31 .B #include <sys/types.h>
32 .B #include <mqueue.h>
33 .sp
34 .BI "int mq_getsetattr(mqd_t " mqdes ", struct mq_attr *" newattr ","
35 .BI " struct mq_attr *" oldattr );
36 .fi
37
38 .IR Note :
39 There is no glibc wrapper for this system call; see NOTES.
40 .SH DESCRIPTION
41 Do not use this system call.
42
43 This is the low-level system call used to implement
44 .BR mq_getattr (3)
45 and
46 .BR mq_setattr (3).
47 For an explanation of how this system call operates,
48 see the description of
49 .BR mq_setattr (3).
50 .SH CONFORMING TO
51 This interface is nonstandard; avoid its use.
52 .SH NOTES
53 Glibc does not provide a wrapper for this system call; call it using
54 .BR syscall (2).
55 (Actually, never call it unless you are writing a C library!)
56 .SH SEE ALSO
57 .BR mq_getattr (3),
58 .BR mq_overview (7)