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

4.104.114.84.95
Last change on this file since a29d2e7 was 7ded4e37, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 04:00:25

Remove unnecessary white spaces.

  • 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.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/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}
Note: See TracBrowser for help on using the repository browser.