source: rtems/c/src/exec/itron/src/sysmgmt.c @ 9d9a3dd

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