source: rtems/doc/itron3.0/config.t @ e968366

4.104.114.84.95
Last change on this file since e968366 was e968366, checked in by Joel Sherrill <joel.sherrill@…>, on 05/26/99 at 18:10:59

Prototypes are now based on how the TRON specification states them.
The style in the output is not right but it is a good starting point.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1@c
2@c  This is the chapter from the RTEMS ITRON User's Guide that
3@c  documents the services provided by the system
4@c  manager.
5@c
6@c  $Id$
7@c
8
9@chapter System Manager
10
11@section Introduction
12
13The
14system manager is ...
15
16The services provided by the system manager are:
17
18@itemize @bullet
19@item @code{get_ver} - Get Version Information  Get Version Information of another Node
20@item @code{ref_sys} - Reference Semaphore Status
21@item @code{ref_cfg} - Reference Configuration Information
22@item @code{def_svc} - Define Extended SVC Handler
23@item @code{def_exc} - Define Exception Handler
24@end itemize
25
26@section Background
27
28@section Operations
29
30@section System Calls
31
32This section details the system manager's services.
33A subsection is dedicated to each of this manager's services
34and describes the calling sequence, related constants, usage,
35and status codes.
36
37
38@c
39@c  get_ver
40@c
41
42@page
43@subsection get_ver - Get Version Information  Get Version Information of another Node
44
45@subheading CALLING SEQUENCE:
46
47@ifset is-C
48@example
49ER get_ver (
50 T_VER *pk_ver  ER nget_ver
51);
52@end example
53@end ifset
54
55@ifset is-Ada
56@end ifset
57
58@subheading STATUS CODES:
59
60@code{EXXX} -
61
62@subheading DESCRIPTION:
63
64@subheading NOTES:
65
66
67@c
68@c  ref_sys
69@c
70
71@page
72@subsection ref_sys - Reference Semaphore Status
73
74@subheading CALLING SEQUENCE:
75
76@ifset is-C
77@example
78ER ref_sys (
79 T_RSYS *pk_rsys
80);
81@end example
82@end ifset
83
84@ifset is-Ada
85@end ifset
86
87@subheading STATUS CODES:
88
89@code{EXXX} -
90
91@subheading DESCRIPTION:
92
93@subheading NOTES:
94
95
96@c
97@c  ref_cfg
98@c
99
100@page
101@subsection ref_cfg - Reference Configuration Information
102
103@subheading CALLING SEQUENCE:
104
105@ifset is-C
106@example
107ER ref_cfg (
108 T_RCFG *pk_rcfg
109);
110@end example
111@end ifset
112
113@ifset is-Ada
114@end ifset
115
116@subheading STATUS CODES:
117
118@code{EXXX} -
119
120@subheading DESCRIPTION:
121
122@subheading NOTES:
123
124
125@c
126@c  def_svc
127@c
128
129@page
130@subsection def_svc - Define Extended SVC Handler
131
132@subheading CALLING SEQUENCE:
133
134@ifset is-C
135@example
136ER def_svc (
137 FN s_fncd, T_DSVC *pk_dsvc
138);
139@end example
140@end ifset
141
142@ifset is-Ada
143@end ifset
144
145@subheading STATUS CODES:
146
147@code{EXXX} -
148
149@subheading DESCRIPTION:
150
151@subheading NOTES:
152
153
154@c
155@c  def_exc
156@c
157
158@page
159@subsection def_exc - Define Exception Handler
160
161@subheading CALLING SEQUENCE:
162
163@ifset is-C
164@example
165ER def_exc (
166 UINT exckind, T_DEXC *pk_dexc
167);
168@end example
169@end ifset
170
171@ifset is-Ada
172@end ifset
173
174@subheading STATUS CODES:
175
176@code{EXXX} -
177
178@subheading DESCRIPTION:
179
180@subheading NOTES:
181
Note: See TracBrowser for help on using the repository browser.