source: rtems/cpukit/sapi/include/rtems/sptables.h @ 8054b1c

5
Last change on this file since 8054b1c was 8054b1c, checked in by Sebastian Huber <sebastian.huber@…>, on 11/26/15 at 13:08:56

Remove <rtems/debug.h>

Close #2477.

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[b96254f]1/**
[27f071cd]2 * @file
3 *
4 * @brief Pre-Initialized Tables Used when in a Single Processor Configuration
[d2c26e4b]5 *
[27f071cd]6 * This include file contains the executive's pre-initialized tables
7 * used when in a single processor configuration.
[b96254f]8 */
[28352fae]9
[b96254f]10/*
[d2c26e4b]11 *  COPYRIGHT (c) 1989-1999.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
[c499856]16 *  http://www.rtems.org/license/LICENSE.
[d2c26e4b]17 */
18
[092f142a]19#ifndef _RTEMS_SPTABLES_H
20#define _RTEMS_SPTABLES_H
[d2c26e4b]21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#include <rtems/config.h>
27#include <rtems/fatal.h>
28#include <rtems/init.h>
29#include <rtems/io.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#if defined(RTEMS_MULTIPROCESSING)
37#include <rtems/rtems/mp.h>
38#endif
39#include <rtems/rtems/part.h>
40#include <rtems/rtems/ratemon.h>
41#include <rtems/rtems/region.h>
42#include <rtems/rtems/signal.h>
43#include <rtems/rtems/timer.h>
44
[976162a6]45#if defined(RTEMS_MULTIPROCESSING)
[d2c26e4b]46/*
47 *  This is the default Multiprocessing Configuration Table.
48 *  It is used in single processor configurations.
49 */
[976162a6]50  #if defined(SAPI_INIT)
51    const rtems_multiprocessing_table
52           _Initialization_Default_multiprocessing_table = {
[c2564b6c]53      1,                        /* local node number */
54      1,                        /* maximum number nodes in system */
55      0,                        /* maximum number global objects */
56      0,                        /* maximum number proxies */
[2f99eeb]57      STACK_MINIMUM_SIZE,       /* MPCI receive server stack size */
[c2564b6c]58      NULL,                     /* pointer to MPCI address table */
[976162a6]59    };
60  #else
61    extern const rtems_multiprocessing_table
62           _Initialization_Default_multiprocessing_table;
63  #endif
[d2c26e4b]64#endif
65
66#ifdef __cplusplus
67}
68#endif
69
70#endif
Note: See TracBrowser for help on using the repository browser.