1 .\" Copyright (c) 2005 David Xu <davidxu@FreeBSD.org>
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice(s), this list of conditions and the following disclaimer as
9 .\" the first lines of this file unmodified other than the possible
10 .\" addition of one or more copyright notices.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice(s), this list of conditions and the following disclaimer in
13 .\" the documentation and/or other materials provided with the
16 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
17 .\" EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
20 .\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 .\" BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 .\" WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 .\" OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 .\" EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 .Nd POSIX message queue file system
39 .D1 Cd "options P1003_1B_MQUEUE"
41 To load as a kernel loadable module:
43 .Dl "kldload mqueuefs"
47 module will permit the
52 The module contains system calls to manipulate
55 It also contains a file system to implement a view for all message queues of
57 This helps users to keep track of their message queues and make
58 it more easily usable without having to invent additional tools.
60 The most common usage is as follows:
62 .Dl "mount -t mqueuefs null /mnt/mqueue"
68 It is possible to define an entry in
70 that looks similar to:
72 null /mnt/mqueue mqueuefs rw 0 0
79 mount point during system boot.
82 as a permanent mount point is not advised as its intention
83 has always been to be a temporary mount point.
86 for more information on
90 Some common tools can be used on the file system, e.g.:
97 To use only the message queue system calls, it is not necessary for
98 user to mount the file system, just load the module or compile it
100 Manually creating a file, for example,
101 .Dq Li "touch /mnt/mqueue/myqueue" ,
102 will create a message queue named
104 in the kernel, default
105 message queue attributes will be applied to the queue.
107 advised to use this method to create a queue;
108 it is better to use the
110 system call to create a queue as it
111 allows the user to specify different attributes.
113 To see the queue's attributes, just read the file:
115 .Dl "cat /mnt/mqueue/myqueue"
123 This manual page was written by
124 .An "David Xu" Aq davidxu@FreeBSD.org .