source: rtems/cpukit/score/cpu/unix/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 which are appropriate
7 *  for a typical modern UNIX box using GNU C for the RTEMS simulator.
8 *
9 *  COPYRIGHT (c) 1989-1999.
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 * some C++ compilers (eg: HP's) don't do 'signed' or 'volatile'
32 */
33#if defined(__cplusplus) && !defined(__GNUC__)
34#define signed
35#define volatile
36#endif
37
38/*
39 *  This section defines the basic types for this processor.
40 */
41
42
43typedef uint16_t     Priority_Bit_map_control;
44
45typedef uint32_t boolean;     /* Boolean value   */
46
47typedef float          single_precision;     /* single precision float */
48typedef double         double_precision;     /* double precision float */
49
50typedef void unix_isr;
51
52typedef unix_isr ( *unix_isr_entry )( void );
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif  /* !ASM */
59
60#endif
Note: See TracBrowser for help on using the repository browser.