summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/unix')
-rw-r--r--cpukit/score/cpu/unix/ChangeLog4
-rw-r--r--cpukit/score/cpu/unix/rtems/score/types.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/score/cpu/unix/ChangeLog b/cpukit/score/cpu/unix/ChangeLog
index 15f12e6c4d..b41d0ba0e9 100644
--- a/cpukit/score/cpu/unix/ChangeLog
+++ b/cpukit/score/cpu/unix/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Eliminate unsigned16, unsigned32.
+
2005-02-19 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/cpu.h: Remove traces from NO_CPU.
diff --git a/cpukit/score/cpu/unix/rtems/score/types.h b/cpukit/score/cpu/unix/rtems/score/types.h
index 1063011c50..0ed9a72479 100644
--- a/cpukit/score/cpu/unix/rtems/score/types.h
+++ b/cpukit/score/cpu/unix/rtems/score/types.h
@@ -40,7 +40,7 @@ extern "C" {
*/
-typedef unsigned16 Priority_Bit_map_control;
+typedef uint16_t Priority_Bit_map_control;
/*
@@ -51,7 +51,7 @@ typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
typedef signed long long signed64; /* 64 bit signed integer */
#endif
-typedef unsigned32 boolean; /* Boolean value */
+typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
typedef double double_precision; /* double precision float */