source: rtems/cpukit/sapi/include/rtems/sptables.h @ 8486081

4.104.114.84.95
Last change on this file since 8486081 was 8486081, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/16/04 at 11:54:29

Remove stray white spaces.

  • Property mode set to 100644
File size: 1.8 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.rtems.com/license/LICENSE.
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#ifdef __cplusplus
67}
68#endif
69
70#endif
71/* end of include file */
Note: See TracBrowser for help on using the repository browser.