summaryrefslogtreecommitdiffstats
path: root/c/src/exec/itron/src/network.c
blob: e359dd4933f9448c16d5a49fee98f31ed6c537c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *  $Id$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <itron.h>

#include <rtems/itron/network.h>

/*
 *  nrea_dat - Read Data from another Node
 */

ER nrea_dat(
  INT *p_reasz,
  VP   dstadr,
  NODE srcnode,
  VP   srcadr,
  INT  datsz
)
{
  return E_OK;
}

/*
 *  nwri_dat - Write Data to another Node
 */

ER nwri_dat(
  INT  *p_wrisz,
  NODE  dstnode,
  VP    dstadr,
  VP    srcadr,
  INT   datsz
)
{
  return E_OK;
}

/*
 *  nget_nod - Get Local Node Number
 */

ER nget_nod(
  NODE *p_node
)
{
  return E_OK;
}

/*
 *  nget_ver - Get Version Information of another Node
 */

ER nget_ver(
  T_VER *pk_ver,
  NODE   node
)
{
  return E_OK;
}