source: rtems/c/src/exec/itron/src/network.c @ 352c9b2

4.104.114.84.95
Last change on this file since 352c9b2 was 352c9b2, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 22:07:23

This patch adds the basic framework for the ITRON 3.0 API implementation
for RTEMS.

  • Property mode set to 100644
File size: 788 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.OARcorp.com/rtems/license.html.
5 *
6 *  $Id$
7 */
8
9#include <itron.h>
10
11#include <rtems/itron/network.h>
12
13/*
14 *  nrea_dat - Read Data from another Node
15 */
16
17ER nrea_dat(
18  INT *p_reasz,
19  VP   dstadr,
20  NODE srcnode,
21  VP   srcadr,
22  INT  datsz
23)
24{
25  return E_OK;
26}
27
28/*
29 *  nwri_dat - Write Data to another Node
30 */
31
32ER nwri_dat(
33  INT  *p_wrisz,
34  NODE  dstnode,
35  VP    dstadr,
36  VP    srcadr,
37  INT   datsz
38)
39{
40  return E_OK;
41}
42
43/*
44 *  nget_nod - Get Local Node Number
45 */
46
47ER nget_nod(
48  NODE *p_node
49)
50{
51  return E_OK;
52}
53
54/*
55 *  nget_ver - Get Version Information of another Node
56 */
57
58ER nget_ver(
59  T_VER *pk_ver,
60  NODE   node
61)
62{
63  return E_OK;
64}
65
Note: See TracBrowser for help on using the repository browser.