source: rtems/cpukit/itron/src/network.c @ 7fcc26ac

4.104.114.84.95
Last change on this file since 7fcc26ac 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: 873 bytes
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#include <itron.h>
13
14#include <rtems/itron/network.h>
15
16/*
17 *  nrea_dat - Read Data from another Node
18 */
19
20ER nrea_dat(
21  INT *p_reasz,
22  VP   dstadr,
23  NODE srcnode,
24  VP   srcadr,
25  INT  datsz
26)
27{
28  return E_OK;
29}
30
31/*
32 *  nwri_dat - Write Data to another Node
33 */
34
35ER nwri_dat(
36  INT  *p_wrisz,
37  NODE  dstnode,
38  VP    dstadr,
39  VP    srcadr,
40  INT   datsz
41)
42{
43  return E_OK;
44}
45
46/*
47 *  nget_nod - Get Local Node Number
48 */
49
50ER nget_nod(
51  NODE *p_node
52)
53{
54  return E_OK;
55}
56
57/*
58 *  nget_ver - Get Version Information of another Node
59 */
60
61ER nget_ver(
62  T_VER *pk_ver,
63  NODE   node
64)
65{
66  return E_OK;
67}
68
Note: See TracBrowser for help on using the repository browser.