source: rtems/cpukit/score/cpu/arm/rtems/score/types.h @ 632e4306

4.104.115
Last change on this file since 632e4306 was 632e4306, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/17/09 at 13:50:31

exception handler maintenance

  • Property mode set to 100644
File size: 993 bytes
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  $Id$
7 *
8 *  This include file contains type definitions pertaining to the
9 *  arm processor family.
10 *
11 *  COPYRIGHT (c) 2000 Canon Research Centre France SA.
12 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.com/license/LICENSE.
17 *
18 */
19
20#ifndef _RTEMS_SCORE_TYPES_H
21#define _RTEMS_SCORE_TYPES_H
22
23#ifndef ASM
24
25#include <stdbool.h>
26#include <stdint.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/*
33 *  This section defines the basic types for this processor.
34 */
35
36typedef uint16_t         Priority_Bit_map_control;
37
38#ifdef RTEMS_DEPRECATED_TYPES
39typedef bool            boolean;            /* Boolean value   */
40typedef float           single_precision;   /* single precision float */
41typedef double          double_precision;   /* double precision float */
42#endif
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif  /* !ASM */
49
50#endif
Note: See TracBrowser for help on using the repository browser.