source: rtems/doc/itron3.0/network.t @ 6449498

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