source: rtems/cpukit/score/cpu/no_cpu/rtems/score/types.h @ aa4a3f1

4.104.114.95
Last change on this file since aa4a3f1 was 795da078, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/17/06 at 05:58:06

2006-11-17 Ralf Corsépius <ralf.corsepius@…>

  • rtems/score/types.h: Remove unsigned64, signed64.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  This include file contains type definitions pertaining to the Intel
7 *  no_cpu processor family.
8 *
9 *  COPYRIGHT (c) 1989-2006.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 */
18
19#ifndef _RTEMS_SCORE_TYPES_H
20#define _RTEMS_SCORE_TYPES_H
21
22#ifndef ASM
23
24#include <rtems/stdint.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  This section defines the basic types for this processor.
32 */
33
34/** This defines the type for a priority bit map entry. */
35typedef uint16_t Priority_Bit_map_control;
36
37/** This defines the type for a Boolean value, */
38typedef uint32_t boolean;     /* Boolean value   */
39
40/** This defines the type for a single precision float. */
41typedef float          single_precision;
42/** This defines the type for a double precision float. */
43typedef double         double_precision;
44
45/** This defines the return type for an ISR entry point. */
46typedef void no_cpu_isr;
47
48/** This defines the prototype for an ISR entry point. */
49typedef no_cpu_isr ( *no_cpu_isr_entry )( void );
50
51#ifdef __cplusplus
52}
53#endif
54
55#endif  /* !ASM */
56
57#endif
Note: See TracBrowser for help on using the repository browser.