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

4.104.114.84.95
Last change on this file since eb91a4b was eb91a4b, checked in by Joel Sherrill <joel.sherrill@…>, on 06/04/99 at 13:37:43

Significantly cleaned up to make a much better starting point for the
class.

  • Property mode set to 100644
File size: 2.3 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
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
44
45@subheading CALLING SEQUENCE:
46
47@ifset is-C
48@example
49ER get_ver(
50 T_VER *pk_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,
138  T_DSVC *pk_dsvc
139);
140@end example
141@end ifset
142
143@ifset is-Ada
144@end ifset
145
146@subheading STATUS CODES:
147
148@code{EXXX} -
149
150@subheading DESCRIPTION:
151
152@subheading NOTES:
153
154
155@c
156@c  def_exc
157@c
158
159@page
160@subsection def_exc - Define Exception Handler
161
162@subheading CALLING SEQUENCE:
163
164@ifset is-C
165@example
166ER def_exc(
167  UINT exckind,
168  T_DEXC *pk_dexc
169);
170@end example
171@end ifset
172
173@ifset is-Ada
174@end ifset
175
176@subheading STATUS CODES:
177
178@code{EXXX} -
179
180@subheading DESCRIPTION:
181
182@subheading NOTES:
183
Note: See TracBrowser for help on using the repository browser.