source: rtems/cpukit/score/cpu/arm/rtems/score/types.h @ 7a3f018

4.104.114.84.95
Last change on this file since 7a3f018 was 7a3f018, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/08/05 at 19:01:45

2005-11-08 Ralf Corsepius <ralf.corsepius@…>

  • rtems/score/types.h: Eliminate unsigned16, unsigned32.
  • Property mode set to 100644
File size: 1.2 KB
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 <rtems/stdint.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31/*
32 *  This section defines the basic types for this processor.
33 */
34
35typedef unsigned long long unsigned64;         /* unsigned 64-bit integer */
36
37typedef signed long long   signed64;           /* 64 bit signed integer */
38
39typedef uint32_t         boolean;            /* Boolean value   */
40typedef uint16_t         Priority_Bit_map_control;
41
42typedef float              single_precision;   /* single precision float */
43typedef double             double_precision;   /* double precision float */
44
45typedef void               arm_cpu_isr;
46typedef void            ( *arm_cpu_isr_entry )( void );
47
48#ifdef __cplusplus
49}
50#endif
51
52#endif  /* !ASM */
53
54#endif
Note: See TracBrowser for help on using the repository browser.