source: rtems/doc/new_chapters/message.t @ 2341410c

4.104.114.84.95
Last change on this file since 2341410c was 16bed8a, checked in by Joel Sherrill <joel.sherrill@…>, on 08/04/98 at 19:25:14

More complete shells generated.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Message Passing Manager
10
11@section Introduction
12
13The
14message passing manager is ...
15
16The directives provided by the message passing manager are:
17
18@itemize @bullet
19@item @code{mq_open} -
20@item @code{mq_close} -
21@item @code{mq_unlink} -
22@item @code{mq_send} -
23@item @code{mq_receive} -
24@item @code{mq_notify} -
25@item @code{mq_setattr} -
26@item @code{mq_getattr} -
27@end itemize
28
29@section Background
30
31@section Operations
32
33@section Directives
34
35This section details the message passing manager's directives.
36A subsection is dedicated to each of this manager's directives
37and describes the calling sequence, related constants, usage,
38and status codes.
39
40@page
41@subsection mq_open -
42
43@subheading CALLING SEQUENCE:
44
45@ifset is-C
46@example
47int mq_open(
48);
49@end example
50@end ifset
51
52@ifset is-Ada
53@end ifset
54
55@subheading STATUS CODES:
56
57@table @b
58@item E
59The
60
61@end table
62
63@subheading DESCRIPTION:
64
65@subheading NOTES:
66
67@page
68@subsection mq_close -
69
70@subheading CALLING SEQUENCE:
71
72@ifset is-C
73@example
74int mq_close(
75);
76@end example
77@end ifset
78
79@ifset is-Ada
80@end ifset
81
82@subheading STATUS CODES:
83
84@table @b
85@item E
86The
87
88@end table
89
90@subheading DESCRIPTION:
91
92@subheading NOTES:
93
94@page
95@subsection mq_unlink -
96
97@subheading CALLING SEQUENCE:
98
99@ifset is-C
100@example
101int mq_unlink(
102);
103@end example
104@end ifset
105
106@ifset is-Ada
107@end ifset
108
109@subheading STATUS CODES:
110
111@table @b
112@item E
113The
114
115@end table
116
117@subheading DESCRIPTION:
118
119@subheading NOTES:
120
121@page
122@subsection mq_send -
123
124@subheading CALLING SEQUENCE:
125
126@ifset is-C
127@example
128int mq_send(
129);
130@end example
131@end ifset
132
133@ifset is-Ada
134@end ifset
135
136@subheading STATUS CODES:
137
138@table @b
139@item E
140The
141
142@end table
143
144@subheading DESCRIPTION:
145
146@subheading NOTES:
147
148@page
149@subsection mq_receive -
150
151@subheading CALLING SEQUENCE:
152
153@ifset is-C
154@example
155int mq_receive(
156);
157@end example
158@end ifset
159
160@ifset is-Ada
161@end ifset
162
163@subheading STATUS CODES:
164
165@table @b
166@item E
167The
168
169@end table
170
171@subheading DESCRIPTION:
172
173@subheading NOTES:
174
175@page
176@subsection mq_notify -
177
178@subheading CALLING SEQUENCE:
179
180@ifset is-C
181@example
182int mq_notify(
183);
184@end example
185@end ifset
186
187@ifset is-Ada
188@end ifset
189
190@subheading STATUS CODES:
191
192@table @b
193@item E
194The
195
196@end table
197
198@subheading DESCRIPTION:
199
200@subheading NOTES:
201
202@page
203@subsection mq_setattr -
204
205@subheading CALLING SEQUENCE:
206
207@ifset is-C
208@example
209int mq_setattr(
210);
211@end example
212@end ifset
213
214@ifset is-Ada
215@end ifset
216
217@subheading STATUS CODES:
218
219@table @b
220@item E
221The
222
223@end table
224
225@subheading DESCRIPTION:
226
227@subheading NOTES:
228
229@page
230@subsection mq_getattr -
231
232@subheading CALLING SEQUENCE:
233
234@ifset is-C
235@example
236int mq_getattr(
237);
238@end example
239@end ifset
240
241@ifset is-Ada
242@end ifset
243
244@subheading STATUS CODES:
245
246@table @b
247@item E
248The
249
250@end table
251
252@subheading DESCRIPTION:
253
254@subheading NOTES:
255
Note: See TracBrowser for help on using the repository browser.