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

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/**
2 * @file
3 *
4 * @brief Pre-Initialized Tables Used when in a Single Processor Configuration
5 *
6 * This include file contains the executive's pre-initialized tables
7 * used when in a single processor configuration.
8 */
9
10/*
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
16 *  http://www.rtems.org/license/LICENSE.
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
33#include <rtems/rtems/intr.h>
34#include <rtems/rtems/clock.h>
35#include <rtems/rtems/tasks.h>
36#include <rtems/rtems/dpmem.h>
37#include <rtems/rtems/event.h>
38#if defined(RTEMS_MULTIPROCESSING)
39#include <rtems/rtems/mp.h>
40#endif
41#include <rtems/rtems/part.h>
42#include <rtems/rtems/ratemon.h>
43#include <rtems/rtems/region.h>
44#include <rtems/rtems/signal.h>
45#include <rtems/rtems/timer.h>
46
47#if defined(RTEMS_MULTIPROCESSING)
48/*
49 *  This is the default Multiprocessing Configuration Table.
50 *  It is used in single processor configurations.
51 */
52  #if defined(SAPI_INIT)
53    const 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      STACK_MINIMUM_SIZE,       /* MPCI receive server stack size */
60      NULL,                     /* pointer to MPCI address table */
61    };
62  #else
63    extern const rtems_multiprocessing_table
64           _Initialization_Default_multiprocessing_table;
65  #endif
66#endif
67
68#ifdef __cplusplus
69}
70#endif
71
72#endif
Note: See TracBrowser for help on using the repository browser.