source: rtems/cpukit/itron/src/sysmgmt.c @ de05cbb9

4.104.114.84.95
Last change on this file since de05cbb9 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 911 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#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <itron.h>
17
18#include <rtems/itron/sysmgmt.h>
19
20/*
21 *  get_ver - Get Version Information
22 */
23
24ER get_ver(
25  T_VER *pk_ver
26)
27{
28  return E_OK;
29}
30
31/*
32 *  ref_sys - Reference System Status
33 */
34
35ER ref_sys(
36  T_RSYS *pk_rsys
37)
38{
39  return E_OK;
40}
41
42/*
43 *  ref_cfg - Reference Configuration Information
44 */
45
46ER ref_cfg(
47  T_RCFG *pk_rcfg
48)
49{
50  return E_OK;
51}
52
53/*
54 *  def_svc - Define Extended SVC Handler
55 */
56
57ER def_svc(
58  FN      s_fncd,
59  T_DSVC *pk_dsvc
60)
61{
62  return E_OK;
63}
64
65/*
66 *  def_exc - Define Exception Handler
67 */
68
69ER def_exc(
70  UINT    exckind,
71  T_DEXC *pk_dexc
72)
73{
74  return E_OK;
75}
76
Note: See TracBrowser for help on using the repository browser.