source: rtems/doc/new_chapters/adminiface.t @ b044905b

4.104.114.84.95
Last change on this file since b044905b was b044905b, checked in by Wade A Smith <warm38@…>, on 08/10/98 at 14:54:01

Documented the admin_shutdown function

  • Property mode set to 100644
File size: 1.3 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 Administration Interface Manager
10
11@section Introduction
12
13The
14administration interface manager is ...
15
16The directives provided by the administration interface manager are:
17
18@itemize @bullet
19@item @code{admin_shutdown} - Shutdown the system
20@end itemize
21
22@section Background
23
24@section Operations
25
26@section Directives
27
28This section details the administration interface manager's directives.
29A subsection is dedicated to each of this manager's directives
30and describes the calling sequence, related constants, usage,
31and status codes.
32
33@page
34@subsection admin_shutdown - Shutdown the system
35
36@subheading CALLING SEQUENCE:
37
38@ifset is-C
39@example
40int admin_shutdown(
41  struct admin_args_   *args[],
42  size_t                nargs
43);
44@end example
45@end ifset
46
47@ifset is-Ada
48@end ifset
49
50@subheading STATUS CODES:
51
52@table @b
53@item EINVAL
54An invalid argument was passed to the function call.
55@item ENOSYS
56The function admin_shutdown() is not supported by this implementation.
57@item EPERM
58The caller does not have appropriate permission for shutting down the
59system.
60
61@end table
62
63@subheading DESCRIPTION:
64
65The @code{admin_shutdown} function restarts the system.
66
67@subheading NOTES:
68
Note: See TracBrowser for help on using the repository browser.