source: rtems/cpukit/score/cpu/sh/rtems/score/types.h @ 6162bc2

4.104.115
Last change on this file since 6162bc2 was 6162bc2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/11/08 at 14:10:16

2008-09-11 Ralf Corsépius <ralf.corsepius@…>

  • rtems/score/types.h: Do not define boolean, single_precision, double_precision unless RTEMS_DEPRECATED_TYPES is given.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  This include file contains information pertaining to the Hitachi SH
7 *  processor.
8 *
9 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
10 *           Bernd Becker (becker@faw.uni-ulm.de)
11 *
12 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
13 *
14 *  This program is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 *
19 *  COPYRIGHT (c) 1998-2001.
20 *  On-Line Applications Research Corporation (OAR).
21 *
22 *  The license and distribution terms for this file may be
23 *  found in the file LICENSE in this distribution or at
24 *  http://www.rtems.com/license/LICENSE.
25 *
26 *  $Id$
27 */
28
29#ifndef _RTEMS_SCORE_TYPES_H
30#define _RTEMS_SCORE_TYPES_H
31
32#ifndef ASM
33
34#include <stdbool.h>
35#include <rtems/stdint.h>
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41/*
42 *  This section defines the basic types for this processor.
43 */
44
45typedef uint16_t     Priority_Bit_map_control;
46
47typedef void sh_isr;
48typedef void ( *sh_isr_entry )( void );
49
50#ifdef RTEMS_DEPRECATED_TYPES
51typedef bool boolean;                           /* Boolean value, external */
52typedef float          single_precision;        /* single precision float */
53typedef double         double_precision;        /* double precision float */
54#endif
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif  /* !ASM */
61
62#endif
Note: See TracBrowser for help on using the repository browser.