source: rtems/doc/itron3.0/config.t @ 090ab6eb

4.104.114.84.95
Last change on this file since 090ab6eb was 6449498, checked in by Joel Sherrill <joel.sherrill@…>, on 01/17/02 at 21:47:47

2001-01-17 Joel Sherrill <joel@…>

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