source: rtems/cpukit/score/cpu/v850/rtems/score/cpuimpl.h @ 82d30a3

5
Last change on this file since 82d30a3 was 82d30a3, checked in by Sebastian Huber <sebastian.huber@…>, on 11/11/16 at 09:16:33

score: Move CPU_PER_CPU_CONTROL_SIZE

Move CPU_PER_CPU_CONTROL_SIZE and the optional CPU_Per_CPU_control to
<rtems/score/cpuimpl.h> to hide it from <rtems.h>.

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