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

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • 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/*
67 *  This is the version string.
68 */
69
70#define RTEMS_VERSION "rtems-@RTEMS_VERSION@"
71
72#if defined(SAPI_INIT)
73const char _RTEMS_version[] =
74  "RTEMS RELEASE " RTEMS_VERSION
75     "(" CPU_NAME "/" CPU_MODEL_NAME "/@RTEMS_BSP@)";
76#else
77extern const char _RTEMS_version[];
78#endif
79
80#ifdef __cplusplus
81}
82#endif
83
84#endif
85/* end of include file */
Note: See TracBrowser for help on using the repository browser.