source: rtems/c/src/exec/sapi/include/rtems/sptables.h @ 2f831ac

4.104.114.84.95
Last change on this file since 2f831ac was 2f831ac, checked in by Joel Sherrill <joel.sherrill@…>, on 05/17/99 at 22:16:52

Moved _Entry_Table to its own file to avoid having every RTEMS directive
pulled in.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*  sptables.h
2 *
3 *  This include file contains the executive's pre-initialized tables
4 *  used when in a single processor configuration.
5 *
6 *  COPYRIGHT (c) 1989-1998.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#ifndef __RTEMS_SPTABLES_h
18#define __RTEMS_SPTABLES_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#include <rtems/config.h>
25
26#include <rtems/debug.h>
27#include <rtems/fatal.h>
28#include <rtems/init.h>
29#include <rtems/io.h>
30#include <rtems/score/sysstate.h>
31
32#include <rtems/rtems/intr.h>
33#include <rtems/rtems/clock.h>
34#include <rtems/rtems/tasks.h>
35#include <rtems/rtems/dpmem.h>
36#include <rtems/rtems/event.h>
37#include <rtems/rtems/message.h>
38#if defined(RTEMS_MULTIPROCESSING)
39#include <rtems/rtems/mp.h>
40#endif
41#include <rtems/rtems/part.h>
42#include <rtems/rtems/ratemon.h>
43#include <rtems/rtems/region.h>
44#include <rtems/rtems/sem.h>
45#include <rtems/rtems/signal.h>
46#include <rtems/rtems/timer.h>
47
48/*
49 *  This is the default Multiprocessing Configuration Table.
50 *  It is used in single processor configurations.
51 */
52
53const rtems_multiprocessing_table
54       _Initialization_Default_multiprocessing_table = {
55  1,                      /* local node number */
56  1,                      /* maximum number nodes in system */
57  0,                      /* maximum number global objects */
58  0,                      /* maximum number proxies */
59  NULL,                   /* pointer to MPCI address table */
60};
61
62/*
63 *  This is the version string.
64 */
65
66#define RTEMS_VERSION "rtems-19990426"
67
68const char _RTEMS_version[] =
69  "RTEMS RELEASE " RTEMS_VERSION
70     "(" CPU_NAME "/" CPU_MODEL_NAME "/REPLACE_THIS_WITH_THE_BSP)";
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif
77/* end of include file */
Note: See TracBrowser for help on using the repository browser.