kernel: separate state for trace-deferred syscalls
[minix.git] / lib / libc / sys / msgrcv.2
blobce594db0ac4206eb7bf6923d6a2a9f5f3c4297ce
1 .\"     $NetBSD: msgrcv.2,v 1.19 2009/01/28 08:57:02 wiz Exp $
2 .\"
3 .\" Copyright (c) 1995 Frank van der Linden
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\"    must display the following acknowledgement:
16 .\"      This product includes software developed for the NetBSD Project
17 .\"      by Frank van der Linden
18 .\" 4. The name of the author may not be used to endorse or promote products
19 .\"    derived from this software without specific prior written permission
20 .\"
21 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 .\"
32 .Dd January 26, 2009
33 .Dt MSGRCV 2
34 .Os
35 .Sh NAME
36 .Nm msgrcv
37 .Nd receive a message from a message queue
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In sys/msg.h
42 .Ft ssize_t
43 .Fn msgrcv "int msqid" "void *msgp" "size_t msgsz" "long msgtyp" "int msgflg"
44 .Sh DESCRIPTION
45 The
46 .Fn msgrcv
47 function receives a message from the message queue specified in
48 .Fa msqid ,
49 and places it into the user-defined structure pointed to by
50 .Fa msgp .
51 This structure must contain a first field of type
52 .Sy long
53 that will indicate the user-defined type of the message.
54 The remaining fields will contain the contents of the message.
55 The following is an example of what this user-defined structure might
56 look like:
57 .Bd -literal
58 struct mymsg {
59     long mtype;    /* message type */
60     char mtext[1]; /* body of message */
62 .Ed
63 .Pp
64 .Va mtype
65 is an integer greater than 0 that can be used to select messages.
66 .Va mtext
67 is an array of bytes, with size up to the system limit
68 .Dv MSGMAX .
69 .Pp
70 The value of
71 .Fa msgtyp
72 has one of the following meanings:
73 .Bl -bullet
74 .It
75 .Fa msgtyp
76 is greater than 0.
77 The first message of type
78 .Fa msgtyp
79 will be received.
80 .It
81 .Fa msgtyp
82 is equal to 0.
83 The first message on the queue will be received.
84 .It
85 .Fa msgtyp
86 is less than 0.
87 The first message of the lowest message type that is
88 less than or equal to the absolute value of
89 .Fa msgtyp
90 will be received.
91 .El
92 .Pp
93 .Fa msgsz
94 specifies the maximum length of the requested message.
95 If the received message has a length greater than
96 .Fa msgsz
97 it will be silently truncated if the
98 .Dv MSG_NOERROR
99 flag is set in
100 .Fa msgflg ,
101 otherwise an error will be returned.
103 If no matching message is present on the message queue specified by
104 .Fa msqid ,
105 the behaviour of
106 .Fn msgrcv
107 depends on whether the
108 .Dv IPC_NOWAIT
109 flag is set in
110 .Fa msgflg
111 or not.
113 .Dv IPC_NOWAIT
114 is set, then
115 .Fn msgrcv
116 will immediately return a value of \-1 and set
117 .Va errno
119 .Er EAGAIN .
121 .Dv IPC_NOWAIT
122 is not set, the calling process will block until:
123 .Bl -bullet
125 A message of the requested type becomes available on the message queue.
127 The message queue is removed, in which case \-1 will be returned and
128 .Va errno
129 set to
130 .Er EIDRM .
132 A signal is received and caught.
133 \-1 is returned and
134 .Va errno
135 is set to
136 .Er EINTR .
139 If a message is successfully received, the data structure associated with
140 .Fa msqid
141 is updated as follows:
142 .Bl -bullet
144 .Va msg_lrpid
145 is set to the pid of the caller.
147 .Va msg_lrtime
148 is set to the current time.
150 .Va msg_qnum
151 is decremented by 1.
153 .Sh RETURN VALUES
154 Upon successful completion,
155 .Fn msgrcv
156 returns the number of bytes received into the
157 .Va mtext
158 field of the structure pointed to by
159 .Fa msgp .
160 Otherwise, \-1 is returned, and
161 .Va errno
162 set to indicate the error.
163 .Sh ERRORS
164 .Fn msgrcv
165 will fail if:
166 .Bl -tag -width Er
167 .It Bq Er E2BIG
168 A matching message was received, but its size was greater than
169 .Fa msgsz
170 and the
171 .Dv MSG_NOERROR
172 flag was not set in
173 .Fa msgflg .
174 .It Bq Er EACCES
175 The calling process does not have read access to the message queue.
176 .It Bq Er EAGAIN
177 There is no message of the requested type available on the message queue,
179 .Dv IPC_NOWAIT
180 is set in
181 .Fa msgflg .
182 .It Bq Er EFAULT
183 .Fa msgp
184 points to an invalid address.
185 .It Bq Er EIDRM
186 The message queue identifier
187 .Fa msqid
188 is removed from the system.
189 .It Bq Er EINTR
190 The system call was interrupted by the delivery of a signal.
191 .It Bq Er EINVAL
192 .Fa msqid
193 is not a valid message queue identifier
195 The message queue was removed while
196 .Fn msgrcv
197 was waiting for a message of the requested type to become available in it.
199 .Fa msgsz
200 is greater than
201 .Dv SSIZE_MAX .
202 .It Bq Er ENOMSG
203 The queue does not contain a message of the desired type and
204 .Dv IPC_NOWAIT
205 is set.
207 .Sh SEE ALSO
208 .Xr msgctl 2 ,
209 .Xr msgget 2 ,
210 .Xr msgsnd 2
211 .Sh STANDARDS
214 system call conforms to
215 .St -xsh5 .
216 .Sh HISTORY
217 Message queues appeared in the first release of
218 .At V .