source: rtems/testsuites/sptests/sppercpudata01/sppercpudata01.h @ 99de42c

5
Last change on this file since 99de42c was cfc4231d, checked in by Sebastian Huber <sebastian.huber@…>, on 08/27/18 at 08:36:35

score: Add flexible per-CPU data

Update #3507.

  • Property mode set to 100644
File size: 609 bytes
Line 
1/*
2 * Copyright (c) 2018 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
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 SPPERCPUDATA01_H
16#define SPPERCPUDATA01_H
17
18#ifdef __cplusplus
19extern "C" {
20#endif /* __cplusplus */
21
22#include <rtems/score/percpudata.h>
23
24PER_CPU_DATA_ITEM_DECLARE(unsigned int, g);
25
26#ifdef __cplusplus
27}
28#endif /* __cplusplus */
29
30#endif /* SPPERCPUDATA01_H */
Note: See TracBrowser for help on using the repository browser.