source: rtems/cpukit/sapi/src/rtemsapi.c @ 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 *  POSIX API Initialization Support
3 *
4 *  NOTE:
5 *
6 *  COPYRIGHT (c) 1989-2008.
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
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18/*
19 *  RTEMS_API_INIT is defined so all of the RTEMS API
20 *  data will be included in this object file.
21 */
22
23#define RTEMS_API_INIT
24
25#include <rtems/system.h>
26#include <rtems/rtems/status.h>
27#include <rtems/rtems/rtemsapi.h>
28
29#include <rtems/rtems/intr.h>
30#include <rtems/rtems/barrier.h>
31#include <rtems/rtems/clock.h>
32#include <rtems/rtems/tasks.h>
33#include <rtems/rtems/dpmem.h>
34#include <rtems/rtems/event.h>
35#include <rtems/rtems/message.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/sem.h>
43#include <rtems/rtems/signal.h>
44#include <rtems/rtems/timer.h>
45
46Objects_Information *_RTEMS_Objects[ OBJECTS_RTEMS_CLASSES_LAST + 1 ];
47
48/*
49 *  _RTEMS_API_Initialize
50 *
51 *  XXX
52 */
53
54void _RTEMS_API_Initialize(void)
55{
56  /*
57   * Install our API Object Management Table and initialize the
58   * various managers.
59   */
60  _Objects_Information_table[OBJECTS_CLASSIC_API] = _RTEMS_Objects;
61
62  #if defined(RTEMS_MULTIPROCESSING)
63    _Multiprocessing_Manager_initialization();
64  #endif
65
66  _RTEMS_tasks_Manager_initialization();
67  _Timer_Manager_initialization();
68  _Signal_Manager_initialization();
69  _Event_Manager_initialization();
70  _Message_queue_Manager_initialization();
71  _Semaphore_Manager_initialization();
72  _Partition_Manager_initialization();
73  _Region_Manager_initialization();
74  _Dual_ported_memory_Manager_initialization();
75  _Rate_monotonic_Manager_initialization();
76  _Barrier_Manager_initialization();
77}
78
79/* end of file */
Note: See TracBrowser for help on using the repository browser.