summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix/rtems/score/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/unix/rtems/score/types.h')
-rw-r--r--cpukit/score/cpu/unix/rtems/score/types.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/cpukit/score/cpu/unix/rtems/score/types.h b/cpukit/score/cpu/unix/rtems/score/types.h
index bd678c68b9..bd7fcae2d2 100644
--- a/cpukit/score/cpu/unix/rtems/score/types.h
+++ b/cpukit/score/cpu/unix/rtems/score/types.h
@@ -40,18 +40,16 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-
typedef uint16_t Priority_Bit_map_control;
-
-typedef bool boolean; /* Boolean value */
-
-typedef float single_precision; /* single precision float */
-typedef double double_precision; /* double precision float */
-
typedef void unix_isr;
-
typedef unix_isr ( *unix_isr_entry )( void );
+#ifdef RTEMS_DEPRECATED_TYPES
+typedef bool boolean; /* Boolean value */
+typedef float single_precision; /* single precision float */
+typedef double double_precision; /* double precision float */
+#endif
+
#ifdef __cplusplus
}
#endif