source: rtems/cpukit/score/cpu/nios2/rtems/score/cpuimpl.h @ df63fbd1

5
Last change on this file since df63fbd1 was df63fbd1, checked in by Sebastian Huber <sebastian.huber@…>, on 11/04/16 at 12:45:25

score: Add <rtems/score/cpuimpl.h>

The aim of this file is to encapsulate CPU port implementation details.
This helps to hide implementation details from <rtems.h> which
indirectly includes <rtems/score/cpu.h>.

  • Property mode set to 100644
File size: 452 bytes
Line 
1/**
2 * @file
3 *
4 * @brief CPU Port Implementation API
5 */
6
7/*
8 * The license and distribution terms for this file may be
9 * found in the file LICENSE in this distribution or at
10 * http://www.rtems.org/license/LICENSE.
11 */
12
13#ifndef _RTEMS_SCORE_CPUIMPL_H
14#define _RTEMS_SCORE_CPUIMPL_H
15
16#include <rtems/score/cpu.h>
17
18#ifndef ASM
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif /* ASM */
29
30#endif /* _RTEMS_SCORE_CPUIMPL_H */
Note: See TracBrowser for help on using the repository browser.