source: rtems/c/src/exec/itron/src/sysmgmt.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: 780 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/sysmgmt.h>
12
13/*
14 *  get_ver - Get Version Information
15 */
16
17ER get_ver(
18  T_VER *pk_ver
19)
20{
21  return E_OK;
22}
23
24/*
25 *  ref_sys - Reference System Status
26 */
27
28ER ref_sys(
29  T_RSYS *pk_rsys
30)
31{
32  return E_OK;
33}
34
35/*
36 *  ref_cfg - Reference Configuration Information
37 */
38
39ER ref_cfg(
40  T_RCFG *pk_rcfg
41)
42{
43  return E_OK;
44}
45
46/*
47 *  def_svc - Define Extended SVC Handler
48 */
49
50ER def_svc(
51  FN      s_fncd,
52  T_DSVC *pk_dsvc
53)
54{
55  return E_OK;
56}
57
58/*
59 *  def_exc - Define Exception Handler
60 */
61
62ER def_exc(
63  UINT    exckind,
64  T_DEXC *pk_dexc
65)
66{
67  return E_OK;
68}
69
Note: See TracBrowser for help on using the repository browser.