1mq_close(3) Library Functions Manual mq_close(3)
2
3
4
6 mq_close - close a message queue descriptor
7
9 Real-time library (librt, -lrt)
10
12 #include <mqueue.h>
13
14 int mq_close(mqd_t mqdes);
15
17 mq_close() closes the message queue descriptor mqdes.
18
19 If the calling process has attached a notification request (see mq_no‐
20 tify(3)) to this message queue via mqdes, then this request is removed,
21 and another process can now attach a notification request.
22
24 On success mq_close() returns 0; on error, -1 is returned, with errno
25 set to indicate the error.
26
28 EBADF The message queue descriptor specified in mqdes is invalid.
29
31 For an explanation of the terms used in this section, see at‐
32 tributes(7).
33
34 ┌────────────────────────────────────────────┬───────────────┬─────────┐
35 │Interface │ Attribute │ Value │
36 ├────────────────────────────────────────────┼───────────────┼─────────┤
37 │mq_close() │ Thread safety │ MT-Safe │
38 └────────────────────────────────────────────┴───────────────┴─────────┘
39
41 POSIX.1-2008.
42
44 POSIX.1-2001.
45
47 All open message queues are automatically closed on process termina‐
48 tion, or upon execve(2).
49
51 mq_getattr(3), mq_notify(3), mq_open(3), mq_receive(3), mq_send(3),
52 mq_unlink(3), mq_overview(7)
53
54
55
56Linux man-pages 6.04 2023-03-30 mq_close(3)