source: rtems/doc/new_chapters/message.t @ 832e33c

4.104.114.84.95
Last change on this file since 832e33c was 832e33c, checked in by Joel Sherrill <joel.sherrill@…>, on 08/03/98 at 18:30:21

Added many new chapters

  • Property mode set to 100644
File size: 2.6 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 - XXX
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@subheading DESCRIPTION:
58
59@subheading NOTES:
60
61@page
62@subsection mq_close - XXX
63
64@subheading CALLING SEQUENCE:
65
66@ifset is-C
67@example
68int mq_close(
69);
70@end example
71@end ifset
72
73@ifset is-Ada
74@end ifset
75
76@subheading STATUS CODES:
77
78@subheading DESCRIPTION:
79
80@subheading NOTES:
81
82@page
83@subsection mq_unlink - XXX
84
85@subheading CALLING SEQUENCE:
86
87@ifset is-C
88@example
89int mq_unlink(
90);
91@end example
92@end ifset
93
94@ifset is-Ada
95@end ifset
96
97@subheading STATUS CODES:
98
99@subheading DESCRIPTION:
100
101@subheading NOTES:
102
103@page
104@subsection mq_send - XXX
105
106@subheading CALLING SEQUENCE:
107
108@ifset is-C
109@example
110int mq_send(
111);
112@end example
113@end ifset
114
115@ifset is-Ada
116@end ifset
117
118@subheading STATUS CODES:
119
120@subheading DESCRIPTION:
121
122@subheading NOTES:
123
124@page
125@subsection mq_receive - XXX
126
127@subheading CALLING SEQUENCE:
128
129@ifset is-C
130@example
131int mq_receive(
132);
133@end example
134@end ifset
135
136@ifset is-Ada
137@end ifset
138
139@subheading STATUS CODES:
140
141@subheading DESCRIPTION:
142
143@subheading NOTES:
144
145@page
146@subsection mq_notify - XXX
147
148@subheading CALLING SEQUENCE:
149
150@ifset is-C
151@example
152int mq_notify(
153);
154@end example
155@end ifset
156
157@ifset is-Ada
158@end ifset
159
160@subheading STATUS CODES:
161
162@subheading DESCRIPTION:
163
164@subheading NOTES:
165
166@page
167@subsection mq_setattr - XXX
168
169@subheading CALLING SEQUENCE:
170
171@ifset is-C
172@example
173int mq_setattr(
174);
175@end example
176@end ifset
177
178@ifset is-Ada
179@end ifset
180
181@subheading STATUS CODES:
182
183@subheading DESCRIPTION:
184
185@subheading NOTES:
186
187@page
188@subsection mq_getattr - XXX
189
190@subheading CALLING SEQUENCE:
191
192@ifset is-C
193@example
194int mq_getattr(
195);
196@end example
197@end ifset
198
199@ifset is-Ada
200@end ifset
201
202@subheading STATUS CODES:
203
204@subheading DESCRIPTION:
205
206@subheading NOTES:
207
Note: See TracBrowser for help on using the repository browser.