source: rtems/cpukit/sapi/include/rtems/sptables.h.in @ f4b76ab5

4.104.114.84.95
Last change on this file since f4b76ab5 was f4b76ab5, checked in by Joel Sherrill <joel.sherrill@…>, on 11/16/99 at 16:04:51

Fixed so can be included multiple times in the executive source.

  • Property mode set to 100644
File size: 2.1 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
53#if defined(SAPI_INIT)
54const rtems_multiprocessing_table
55       _Initialization_Default_multiprocessing_table = {
56  1,                      /* local node number */
57  1,                      /* maximum number nodes in system */
58  0,                      /* maximum number global objects */
59  0,                      /* maximum number proxies */
60  NULL,                   /* pointer to MPCI address table */
61};
62#else
63extern const rtems_multiprocessing_table
64       _Initialization_Default_multiprocessing_table;
65#endif
66
67/*
68 *  This is the version string.
69 */
70
71#define RTEMS_VERSION "rtems-@RTEMS_VERSION@"
72
73#if defined(SAPI_INIT)
74const char _RTEMS_version[] =
75  "RTEMS RELEASE " RTEMS_VERSION
76     "(" CPU_NAME "/" CPU_MODEL_NAME "/@RTEMS_BSP@)";
77#else
78extern const char _RTEMS_version[];
79#endif
80
81#ifdef __cplusplus
82}
83#endif
84
85#endif
86/* end of include file */
Note: See TracBrowser for help on using the repository browser.