source: rtems/cpukit/sapi/src/rtemsapi.c @ 365456cc

5
Last change on this file since 365456cc was 365456cc, checked in by Sebastian Huber <sebastian.huber@…>, on 12/14/15 at 14:10:32

Optional Classic Region initialization

Update #2408.

  • Property mode set to 100644
File size: 837 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Initializes the RTEMS API
5 *
6 * @ingroup ClassicRTEMS
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2008.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#define RTEMS_API_INIT
23
24#include <rtems/system.h>
25#include <rtems/rtems/status.h>
26#include <rtems/rtems/rtemsapi.h>
27
28#include <rtems/rtems/intr.h>
29#include <rtems/rtems/barrierimpl.h>
30#include <rtems/rtems/clock.h>
31#include <rtems/rtems/dpmemimpl.h>
32#include <rtems/rtems/ratemonimpl.h>
33
34void _RTEMS_API_Initialize(void)
35{
36  _Dual_ported_memory_Manager_initialization();
37  _Rate_monotonic_Manager_initialization();
38  _Barrier_Manager_initialization();
39}
Note: See TracBrowser for help on using the repository browser.