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

Last change on this file since a3c5064 was a3c5064, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/28/03 at 06:21:39

2003-02-28 Ralf Corsepius <corsepiu@…>

  • include/rtems/sptables.h.in: Remove RTEMS_VERSION (Moved to cpuopts.h).
  • Property mode set to 100644
File size: 2.0 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-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#ifndef __RTEMS_SPTABLES_h
17#define __RTEMS_SPTABLES_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <rtems/config.h>
24
25#include <rtems/debug.h>
26#include <rtems/fatal.h>
27#include <rtems/init.h>
28#include <rtems/io.h>
29#include <rtems/score/sysstate.h>
30
31#include <rtems/rtems/intr.h>
32#include <rtems/rtems/clock.h>
33#include <rtems/rtems/tasks.h>
34#include <rtems/rtems/dpmem.h>
35#include <rtems/rtems/event.h>
36#include <rtems/rtems/message.h>
37#if defined(RTEMS_MULTIPROCESSING)
38#include <rtems/rtems/mp.h>
39#endif
40#include <rtems/rtems/part.h>
41#include <rtems/rtems/ratemon.h>
42#include <rtems/rtems/region.h>
43#include <rtems/rtems/sem.h>
44#include <rtems/rtems/signal.h>
45#include <rtems/rtems/timer.h>
46
47/*
48 *  This is the default Multiprocessing Configuration Table.
49 *  It is used in single processor configurations.
50 */
51
52#if defined(SAPI_INIT)
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#else
62extern const rtems_multiprocessing_table
63       _Initialization_Default_multiprocessing_table;
64#endif
65
66#if defined(SAPI_INIT)
67const char _RTEMS_version[] =
68  "RTEMS RELEASE " RTEMS_VERSION
69     "(" CPU_NAME "/" CPU_MODEL_NAME "/@RTEMS_BSP@)";
70#else
71extern const char _RTEMS_version[];
72#endif
73
74#ifdef __cplusplus
75}
76#endif
77
78#endif
79/* end of include file */
Note: See TracBrowser for help on using the repository browser.