summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-08 19:01:45 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-08 19:01:45 +0000
commit7a3f0188b55606f65aa20b64f7dce465ddfc61e4 (patch)
tree00cbac873eb4b20a2b7fb170e56eee5c902eb779 /cpukit/score/cpu/powerpc
parent2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-7a3f0188b55606f65aa20b64f7dce465ddfc61e4.tar.bz2
2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Eliminate unsigned16, unsigned32.
Diffstat (limited to 'cpukit/score/cpu/powerpc')
-rw-r--r--cpukit/score/cpu/powerpc/ChangeLog4
-rw-r--r--cpukit/score/cpu/powerpc/rtems/score/types.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/score/cpu/powerpc/ChangeLog b/cpukit/score/cpu/powerpc/ChangeLog
index c9b02b5056..8435ef5763 100644
--- a/cpukit/score/cpu/powerpc/ChangeLog
+++ b/cpukit/score/cpu/powerpc/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Eliminate unsigned16, unsigned32.
+
2005-11-02 Till Straumann <strauman@slac.stanford.edu>
* rtems/powerpc/registers.h: recognize mpc7457 CPU; added definitions
diff --git a/cpukit/score/cpu/powerpc/rtems/score/types.h b/cpukit/score/cpu/powerpc/rtems/score/types.h
index 3946407f5a..15617d09ff 100644
--- a/cpukit/score/cpu/powerpc/rtems/score/types.h
+++ b/cpukit/score/cpu/powerpc/rtems/score/types.h
@@ -50,11 +50,11 @@ extern "C" {
typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-typedef unsigned32 Priority_Bit_map_control;
+typedef uint32_t Priority_Bit_map_control;
typedef signed long long signed64; /* 64 bit signed integer */
-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 */