]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/mq_close.3
err.3: EXAMPLES: use EXIT_FAILURE rather than 1 as exit status
[thirdparty/man-pages.git] / man3 / mq_close.3
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_CLOSE 3 2017-09-15 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 mq_close \- close a message queue descriptor
29 .SH SYNOPSIS
30 .nf
31 .B #include <mqueue.h>
32 .PP
33 .BI "int mq_close(mqd_t " mqdes );
34 .fi
35 .PP
36 Link with \fI\-lrt\fP.
37 .SH DESCRIPTION
38 .BR mq_close ()
39 closes the message queue descriptor
40 .IR mqdes .
41 .PP
42 If the calling process has attached a notification request (see
43 .RB ( mq_notify (3))
44 to this message queue via
45 .IR mqdes ,
46 then this request is removed,
47 and another process can now attach a notification request.
48 .SH RETURN VALUE
49 On success
50 .BR mq_close ()
51 returns 0; on error, \-1 is returned, with
52 .I errno
53 set to indicate the error.
54 .SH ERRORS
55 .TP
56 .B EBADF
57 The message queue descriptor specified in
58 .I mqdes
59 is invalid.
60 .SH ATTRIBUTES
61 For an explanation of the terms used in this section, see
62 .BR attributes (7).
63 .TS
64 allbox;
65 lb lb lb
66 l l l.
67 Interface Attribute Value
68 T{
69 .BR mq_close ()
70 T} Thread safety MT-Safe
71 .TE
72 .SH CONFORMING TO
73 POSIX.1-2001, POSIX.1-2008.
74 .SH NOTES
75 All open message queues are automatically closed on process termination,
76 or upon
77 .BR execve (2).
78 .SH SEE ALSO
79 .BR mq_getattr (3),
80 .BR mq_notify (3),
81 .BR mq_open (3),
82 .BR mq_receive (3),
83 .BR mq_send (3),
84 .BR mq_unlink (3),
85 .BR mq_overview (7)