source: rtems/cpukit/sapi/include/rtems/sptables.h @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.9 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
17#ifndef _RTEMS_SPTABLES_H
18#define _RTEMS_SPTABLES_H
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#include <rtems/config.h>
25
26#include <rtems/debug.h>
27#include <rtems/fatal.h>
28#include <rtems/init.h>
29#include <rtems/io.h>
30#include <rtems/score/sysstate.h>
31
32#include <rtems/rtems/intr.h>
33#include <rtems/rtems/clock.h>
34#include <rtems/rtems/tasks.h>
35#include <rtems/rtems/dpmem.h>
36#include <rtems/rtems/event.h>
37#include <rtems/rtems/message.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/sem.h>
45#include <rtems/rtems/signal.h>
46#include <rtems/rtems/timer.h>
47
48#if defined(RTEMS_MULTIPROCESSING)
49/*
50 *  This is the default Multiprocessing Configuration Table.
51 *  It is used in single processor configurations.
52 */
53  #if defined(SAPI_INIT)
54    const rtems_multiprocessing_table
55           _Initialization_Default_multiprocessing_table = {
56      1,                        /* local node number */
57      1,                        /* maximum number nodes in system */
58      0,                        /* maximum number global objects */
59      0,                        /* maximum number proxies */
60      STACK_MINIMUM_SIZE,       /* MPCI receive server stack size */
61      NULL,                     /* pointer to MPCI address table */
62    };
63  #else
64    extern const rtems_multiprocessing_table
65           _Initialization_Default_multiprocessing_table;
66  #endif
67#endif
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif
Note: See TracBrowser for help on using the repository browser.