summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sh
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-11 14:10:16 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-11 14:10:16 +0000
commit6162bc2a1d9ee716039978b44bd16f2a48b99250 (patch)
tree3be21c8ff55538183cc3b44729859390619e8683 /cpukit/score/cpu/sh
parentUpgrade to binutils-2.18.90. (diff)
downloadrtems-6162bc2a1d9ee716039978b44bd16f2a48b99250.tar.bz2
2008-09-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Do not define boolean, single_precision, double_precision unless RTEMS_DEPRECATED_TYPES is given.
Diffstat (limited to 'cpukit/score/cpu/sh')
-rw-r--r--cpukit/score/cpu/sh/ChangeLog5
-rw-r--r--cpukit/score/cpu/sh/rtems/score/types.h10
2 files changed, 10 insertions, 5 deletions
diff --git a/cpukit/score/cpu/sh/ChangeLog b/cpukit/score/cpu/sh/ChangeLog
index 20642d712f..fe5072dc32 100644
--- a/cpukit/score/cpu/sh/ChangeLog
+++ b/cpukit/score/cpu/sh/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-11 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Do not define boolean, single_precision,
+ double_precision unless RTEMS_DEPRECATED_TYPES is given.
+
2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c: Remove extraneous spaces.
diff --git a/cpukit/score/cpu/sh/rtems/score/types.h b/cpukit/score/cpu/sh/rtems/score/types.h
index a9ea64da39..9066fb7f72 100644
--- a/cpukit/score/cpu/sh/rtems/score/types.h
+++ b/cpukit/score/cpu/sh/rtems/score/types.h
@@ -44,14 +44,14 @@ extern "C" {
typedef uint16_t Priority_Bit_map_control;
-typedef bool boolean; /* Boolean value, external */
- /* data bus has 16 bits */
+typedef void sh_isr;
+typedef void ( *sh_isr_entry )( void );
+#ifdef RTEMS_DEPRECATED_TYPES
+typedef bool boolean; /* Boolean value, external */
typedef float single_precision; /* single precision float */
typedef double double_precision; /* double precision float */
-
-typedef void sh_isr;
-typedef void ( *sh_isr_entry )( void );
+#endif
#ifdef __cplusplus
}