OSDN Git Service

673cc5c69a0d8a6d1c1a225dbab88236e6e92e5d
[linuxjm/LDP_man-pages.git] / original / man2 / mq_getsetattr.2
1 '\" t
2 .\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
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)
59 .SH COLOPHON
60 This page is part of release 3.67 of the Linux
61 .I man-pages
62 project.
63 A description of the project,
64 information about reporting bugs,
65 and the latest version of this page,
66 can be found at
67 \%http://www.kernel.org/doc/man\-pages/.