source: rtems/cpukit/sapi/include/rtems/sptables.h @ 2bbea657

4.115
Last change on this file since 2bbea657 was 2bbea657, checked in by Sebastian Huber <sebastian.huber@…>, on 07/17/13 at 11:52:00

rtems: Create semaphore implementation header

Move implementation specific parts of sem.h and sem.inl into new header
file semimpl.h. The sem.h contains now only the application visible
API.

  • 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.com/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#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/signal.h>
47#include <rtems/rtems/timer.h>
48
49#if defined(RTEMS_MULTIPROCESSING)
50/*
51 *  This is the default Multiprocessing Configuration Table.
52 *  It is used in single processor configurations.
53 */
54  #if defined(SAPI_INIT)
55    const rtems_multiprocessing_table
56           _Initialization_Default_multiprocessing_table = {
57      1,                        /* local node number */
58      1,                        /* maximum number nodes in system */
59      0,                        /* maximum number global objects */
60      0,                        /* maximum number proxies */
61      STACK_MINIMUM_SIZE,       /* MPCI receive server stack size */
62      NULL,                     /* pointer to MPCI address table */
63    };
64  #else
65    extern const rtems_multiprocessing_table
66           _Initialization_Default_multiprocessing_table;
67  #endif
68#endif
69
70#ifdef __cplusplus
71}
72#endif
73
74#endif
Note: See TracBrowser for help on using the repository browser.