source: rtems/doc/new_chapters/message.t @ 241e4c7c

4.104.114.84.95
Last change on this file since 241e4c7c was 241e4c7c, checked in by Joel Sherrill <joel.sherrill@…>, on 09/29/98 at 00:04:53

Added sentence to indicate sections were deliberately empty.

  • Property mode set to 100644
File size: 2.9 KB
RevLine 
[832e33c]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
[241e4c7c]31There is currently no text in this section.
32
[832e33c]33@section Operations
34
[241e4c7c]35There is currently no text in this section.
36
[832e33c]37@section Directives
38
39This section details the message passing manager's directives.
40A subsection is dedicated to each of this manager's directives
41and describes the calling sequence, related constants, usage,
42and status codes.
43
44@page
[16bed8a]45@subsection mq_open -
[832e33c]46
47@subheading CALLING SEQUENCE:
48
49@ifset is-C
50@example
51int mq_open(
52);
53@end example
54@end ifset
55
56@ifset is-Ada
57@end ifset
58
59@subheading STATUS CODES:
60
[16bed8a]61@table @b
62@item E
63The
64
65@end table
66
[832e33c]67@subheading DESCRIPTION:
68
69@subheading NOTES:
70
71@page
[16bed8a]72@subsection mq_close -
[832e33c]73
74@subheading CALLING SEQUENCE:
75
76@ifset is-C
77@example
78int mq_close(
79);
80@end example
81@end ifset
82
83@ifset is-Ada
84@end ifset
85
86@subheading STATUS CODES:
87
[16bed8a]88@table @b
89@item E
90The
91
92@end table
93
[832e33c]94@subheading DESCRIPTION:
95
96@subheading NOTES:
97
98@page
[16bed8a]99@subsection mq_unlink -
[832e33c]100
101@subheading CALLING SEQUENCE:
102
103@ifset is-C
104@example
105int mq_unlink(
106);
107@end example
108@end ifset
109
110@ifset is-Ada
111@end ifset
112
113@subheading STATUS CODES:
114
[16bed8a]115@table @b
116@item E
117The
118
119@end table
120
[832e33c]121@subheading DESCRIPTION:
122
123@subheading NOTES:
124
125@page
[16bed8a]126@subsection mq_send -
[832e33c]127
128@subheading CALLING SEQUENCE:
129
130@ifset is-C
131@example
132int mq_send(
133);
134@end example
135@end ifset
136
137@ifset is-Ada
138@end ifset
139
140@subheading STATUS CODES:
141
[16bed8a]142@table @b
143@item E
144The
145
146@end table
147
[832e33c]148@subheading DESCRIPTION:
149
150@subheading NOTES:
151
152@page
[16bed8a]153@subsection mq_receive -
[832e33c]154
155@subheading CALLING SEQUENCE:
156
157@ifset is-C
158@example
159int mq_receive(
160);
161@end example
162@end ifset
163
164@ifset is-Ada
165@end ifset
166
167@subheading STATUS CODES:
168
[16bed8a]169@table @b
170@item E
171The
172
173@end table
174
[832e33c]175@subheading DESCRIPTION:
176
177@subheading NOTES:
178
179@page
[16bed8a]180@subsection mq_notify -
[832e33c]181
182@subheading CALLING SEQUENCE:
183
184@ifset is-C
185@example
186int mq_notify(
187);
188@end example
189@end ifset
190
191@ifset is-Ada
192@end ifset
193
194@subheading STATUS CODES:
195
[16bed8a]196@table @b
197@item E
198The
199
200@end table
201
[832e33c]202@subheading DESCRIPTION:
203
204@subheading NOTES:
205
206@page
[16bed8a]207@subsection mq_setattr -
[832e33c]208
209@subheading CALLING SEQUENCE:
210
211@ifset is-C
212@example
213int mq_setattr(
214);
215@end example
216@end ifset
217
218@ifset is-Ada
219@end ifset
220
221@subheading STATUS CODES:
222
[16bed8a]223@table @b
224@item E
225The
226
227@end table
228
[832e33c]229@subheading DESCRIPTION:
230
231@subheading NOTES:
232
233@page
[16bed8a]234@subsection mq_getattr -
[832e33c]235
236@subheading CALLING SEQUENCE:
237
238@ifset is-C
239@example
240int mq_getattr(
241);
242@end example
243@end ifset
244
245@ifset is-Ada
246@end ifset
247
248@subheading STATUS CODES:
249
[16bed8a]250@table @b
251@item E
252The
253
254@end table
255
[832e33c]256@subheading DESCRIPTION:
257
258@subheading NOTES:
259
Note: See TracBrowser for help on using the repository browser.