source: rtems/cpukit/sapi/include/rtems/sptables.h @ 092f142a

4.104.114.84.95
Last change on this file since 092f142a was 092f142a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 05:00:21

New header guard.

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