source: rtems/doc/itron3.0/network.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.1 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 network support
4@c  manager.
5@c
6@c  $Id$
7@c
8
9@chapter Network Support Manager
10
11@section Introduction
12
13The
14network support manager is ...
15
16The services provided by the network support manager are:
17
18@itemize @bullet
19@item @code{nrea_dat} - Read Data from another Node
20@item @code{nwri_dat} - Write Data to another Node
21@item @code{nget_nod} - Get Local Node Number
22@item @code{nget_ver} - Get Version Information of another Node
23@end itemize
24
25@section Background
26
27@section Operations
28
29@section System Calls
30
31This section details the network support manager's services.
32A subsection is dedicated to each of this manager's services
33and describes the calling sequence, related constants, usage,
34and status codes.
35
36
37@c
38@c  nrea_dat
39@c
40
41@page
42@subsection nrea_dat - Read Data from another Node
43
44@subheading CALLING SEQUENCE:
45
46@ifset is-C
47@example
48ER nrea_dat (
49 INT *p_reasz, VP dstadr, NODE srcnode, VP srcadr,
50);
51@end example
52@end ifset
53
54@ifset is-Ada
55@end ifset
56
57@subheading STATUS CODES:
58
59@code{EXXX} -
60
61@subheading DESCRIPTION:
62
63@subheading NOTES:
64
65
66@c
67@c  nwri_dat
68@c
69
70@page
71@subsection nwri_dat - Write Data to another Node
72
73@subheading CALLING SEQUENCE:
74
75@ifset is-C
76@example
77ER nwri_dat (
78 INT *p_wrisz, NODE dstnode, VP dstadr, VP srcadr,
79);
80@end example
81@end ifset
82
83@ifset is-Ada
84@end ifset
85
86@subheading STATUS CODES:
87
88@code{EXXX} -
89
90@subheading DESCRIPTION:
91
92@subheading NOTES:
93
94
95@c
96@c  nget_nod
97@c
98
99@page
100@subsection nget_nod - Get Local Node Number
101
102@subheading CALLING SEQUENCE:
103
104@ifset is-C
105@example
106ER nget_nod (
107 NODE *p_node
108);
109@end example
110@end ifset
111
112@ifset is-Ada
113@end ifset
114
115@subheading STATUS CODES:
116
117@code{EXXX} -
118
119@subheading DESCRIPTION:
120
121@subheading NOTES:
122
123
124@c
125@c  nget_ver
126@c
127
128@page
129@subsection nget_ver - Get Version Information of another Node
130
131@subheading CALLING SEQUENCE:
132
133@ifset is-C
134@example
135ER nget_ver (
136 T_VER *pk_ver, NODE node
137);
138@end example
139@end ifset
140
141@ifset is-Ada
142@end ifset
143
144@subheading STATUS CODES:
145
146@code{EXXX} -
147
148@subheading DESCRIPTION:
149
150@subheading NOTES:
151
Note: See TracBrowser for help on using the repository browser.