source: rtems/cpukit/itron/include/itronsys/network.h @ 4bf1801

4.104.114.84.95
Last change on this file since 4bf1801 was 9d9a3dd, checked in by Jennifer Averett <Jennifer.Averett@…>, on 11/17/99 at 16:47:58

+ Updated copyright information.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-1999.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.OARcorp.com/rtems/license.html.
8 *
9 *  $Id$
10 */
11
12#ifndef __ITRON_NETWORK_h_
13#define __ITRON_NETWORK_h_
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19/*
20 *  NODE srcnode, dstnode, nod:
21 */
22
23#define TND_SELF   0      /* specifies the local node */
24#define TND_OTHR   (-1)   /* specifies default remote node */
25
26/*
27 *  Network Functions
28 */
29
30/*
31 *  nrea_dat - Read Data from another Node
32 */
33
34ER nrea_dat(
35  INT *p_reasz,
36  VP dstadr,
37  NODE srcnode,
38  VP srcadr,
39  INT datsz
40);
41
42/*
43 *  nwri_dat - Write Data to another Node
44 */
45
46ER nwri_dat(
47  INT *p_wrisz,
48  NODE dstnode,
49  VP dstadr,
50  VP srcadr,
51  INT datsz
52);
53
54/*
55 *  nget_nod - Get Local Node Number
56 */
57
58ER nget_nod(
59  NODE *p_node
60);
61
62/*
63 *  nget_ver - Get Version Information of another Node
64 */
65
66ER nget_ver(
67  T_VER *pk_ver,
68  NODE node
69);
70
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif
77/* end of include file */
78
Note: See TracBrowser for help on using the repository browser.