1MQ_CLOSE(3P) POSIX Programmer's Manual MQ_CLOSE(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 mq_close - close a message queue (REALTIME)
13
15 #include <mqueue.h>
16
17 int mq_close(mqd_t mqdes);
18
19
21 The mq_close() function shall remove the association between the mes‐
22 sage queue descriptor, mqdes, and its message queue. The results of
23 using this message queue descriptor after successful return from this
24 mq_close(), and until the return of this message queue descriptor from
25 a subsequent mq_open(), are undefined.
26
27 If the process has successfully attached a notification request to the
28 message queue via this mqdes, this attachment shall be removed, and the
29 message queue is available for another process to attach for notifica‐
30 tion.
31
33 Upon successful completion, the mq_close() function shall return a
34 value of zero; otherwise, the function shall return a value of -1 and
35 set errno to indicate the error.
36
38 The mq_close() function shall fail if:
39
40 EBADF The mqdes argument is not a valid message queue descriptor.
41
42
43 The following sections are informative.
44
46 None.
47
49 None.
50
52 None.
53
55 None.
56
58 mq_open(), mq_unlink(), msgctl(), msgget(), msgrcv(), msgsnd(), the
59 Base Definitions volume of IEEE Std 1003.1-2001, <mqueue.h>
60
62 Portions of this text are reprinted and reproduced in electronic form
63 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
64 -- Portable Operating System Interface (POSIX), The Open Group Base
65 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
66 Electrical and Electronics Engineers, Inc and The Open Group. In the
67 event of any discrepancy between this version and the original IEEE and
68 The Open Group Standard, the original IEEE and The Open Group Standard
69 is the referee document. The original Standard can be obtained online
70 at http://www.opengroup.org/unix/online.html .
71
72
73
74IEEE/The Open Group 2003 MQ_CLOSE(3P)