From 7a3f0188b55606f65aa20b64f7dce465ddfc61e4 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 8 Nov 2005 19:01:45 +0000 Subject: 2005-11-08 Ralf Corsepius * rtems/score/types.h: Eliminate unsigned16, unsigned32. --- cpukit/score/cpu/arm/ChangeLog | 4 ++++ cpukit/score/cpu/arm/rtems/score/types.h | 4 ++-- cpukit/score/cpu/avr/ChangeLog | 4 ++++ cpukit/score/cpu/avr/rtems/score/types.h | 4 ++-- cpukit/score/cpu/c4x/ChangeLog | 4 ++++ cpukit/score/cpu/c4x/rtems/score/types.h | 4 ++-- cpukit/score/cpu/h8300/ChangeLog | 4 ++++ cpukit/score/cpu/h8300/rtems/score/types.h | 4 ++-- cpukit/score/cpu/i386/ChangeLog | 4 ++++ cpukit/score/cpu/i386/rtems/score/types.h | 4 ++-- cpukit/score/cpu/m68k/ChangeLog | 4 ++++ cpukit/score/cpu/m68k/rtems/score/types.h | 4 ++-- cpukit/score/cpu/mips/ChangeLog | 4 ++++ cpukit/score/cpu/mips/rtems/score/types.h | 4 ++-- cpukit/score/cpu/no_cpu/ChangeLog | 4 ++++ cpukit/score/cpu/no_cpu/rtems/score/types.h | 4 ++-- cpukit/score/cpu/powerpc/ChangeLog | 4 ++++ cpukit/score/cpu/powerpc/rtems/score/types.h | 4 ++-- cpukit/score/cpu/sparc/ChangeLog | 4 ++++ cpukit/score/cpu/sparc/rtems/score/types.h | 4 ++-- cpukit/score/cpu/unix/ChangeLog | 4 ++++ cpukit/score/cpu/unix/rtems/score/types.h | 4 ++-- 22 files changed, 66 insertions(+), 22 deletions(-) (limited to 'cpukit') diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog index ff1951777d..c95ff7a3e1 100644 --- a/cpukit/score/cpu/arm/ChangeLog +++ b/cpukit/score/cpu/arm/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/arm/rtems/score/types.h b/cpukit/score/cpu/arm/rtems/score/types.h index c20b5edd97..8edfc13a10 100644 --- a/cpukit/score/cpu/arm/rtems/score/types.h +++ b/cpukit/score/cpu/arm/rtems/score/types.h @@ -36,8 +36,8 @@ typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ typedef signed long long signed64; /* 64 bit signed integer */ -typedef unsigned32 boolean; /* Boolean value */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint32_t boolean; /* Boolean value */ +typedef uint16_t Priority_Bit_map_control; typedef float single_precision; /* single precision float */ typedef double double_precision; /* double precision float */ diff --git a/cpukit/score/cpu/avr/ChangeLog b/cpukit/score/cpu/avr/ChangeLog index 0dc016c651..dd80f2008d 100644 --- a/cpukit/score/cpu/avr/ChangeLog +++ b/cpukit/score/cpu/avr/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/avr/rtems/score/types.h b/cpukit/score/cpu/avr/rtems/score/types.h index bda1c364d7..b5c59a065a 100644 --- a/cpukit/score/cpu/avr/rtems/score/types.h +++ b/cpukit/score/cpu/avr/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef uint64_t unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_t Priority_Bit_map_control; typedef int64_t 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 */ diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog index 0dd0889d69..565fe493a6 100644 --- a/cpukit/score/cpu/c4x/ChangeLog +++ b/cpukit/score/cpu/c4x/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/c4x/rtems/score/types.h b/cpukit/score/cpu/c4x/rtems/score/types.h index 0e0c45c516..e4ac80fa02 100644 --- a/cpukit/score/cpu/c4x/rtems/score/types.h +++ b/cpukit/score/cpu/c4x/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog index 93f6ad3c37..b9f0b20963 100644 --- a/cpukit/score/cpu/h8300/ChangeLog +++ b/cpukit/score/cpu/h8300/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/h8300/rtems/score/types.h b/cpukit/score/cpu/h8300/rtems/score/types.h index 6b73ba5e17..33d9420ebe 100644 --- a/cpukit/score/cpu/h8300/rtems/score/types.h +++ b/cpukit/score/cpu/h8300/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog index c435f7dc25..a5d46f9cee 100644 --- a/cpukit/score/cpu/i386/ChangeLog +++ b/cpukit/score/cpu/i386/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/i386/rtems/score/types.h b/cpukit/score/cpu/i386/rtems/score/types.h index 09ca40fceb..f661ae32ef 100644 --- a/cpukit/score/cpu/i386/rtems/score/types.h +++ b/cpukit/score/cpu/i386/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog index bff904a9e3..ee7d03f635 100644 --- a/cpukit/score/cpu/m68k/ChangeLog +++ b/cpukit/score/cpu/m68k/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/m68k/rtems/score/types.h b/cpukit/score/cpu/m68k/rtems/score/types.h index c28b97468e..76495ba4f6 100644 --- a/cpukit/score/cpu/m68k/rtems/score/types.h +++ b/cpukit/score/cpu/m68k/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog index 03658f2a07..b5adde6c85 100644 --- a/cpukit/score/cpu/mips/ChangeLog +++ b/cpukit/score/cpu/mips/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/mips/rtems/score/types.h b/cpukit/score/cpu/mips/rtems/score/types.h index 9d56f54f0c..c5a218e214 100644 --- a/cpukit/score/cpu/mips/rtems/score/types.h +++ b/cpukit/score/cpu/mips/rtems/score/types.h @@ -34,11 +34,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog index 4aeae7712d..bfcc9f2c90 100644 --- a/cpukit/score/cpu/no_cpu/ChangeLog +++ b/cpukit/score/cpu/no_cpu/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/no_cpu/rtems/score/types.h b/cpukit/score/cpu/no_cpu/rtems/score/types.h index bf44b26dec..4d5b9bcec2 100644 --- a/cpukit/score/cpu/no_cpu/rtems/score/types.h +++ b/cpukit/score/cpu/no_cpu/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ 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 + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-11-02 Till Straumann * 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 */ diff --git a/cpukit/score/cpu/sparc/ChangeLog b/cpukit/score/cpu/sparc/ChangeLog index 6f8b97d7b3..a12d83e02a 100644 --- a/cpukit/score/cpu/sparc/ChangeLog +++ b/cpukit/score/cpu/sparc/ChangeLog @@ -1,3 +1,7 @@ +2005-11-08 Ralf Corsepius + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-10-27 Ralf Corsepius * rtems/asm.h: Remove private version of CONCAT macros. diff --git a/cpukit/score/cpu/sparc/rtems/score/types.h b/cpukit/score/cpu/sparc/rtems/score/types.h index 4a3a719489..6652791907 100644 --- a/cpukit/score/cpu/sparc/rtems/score/types.h +++ b/cpukit/score/cpu/sparc/rtems/score/types.h @@ -33,11 +33,11 @@ extern "C" { typedef unsigned long long unsigned64; /* unsigned 64-bit integer */ -typedef unsigned16 Priority_Bit_map_control; +typedef uint16_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 */ 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 + + * rtems/score/types.h: Eliminate unsigned16, unsigned32. + 2005-02-19 Ralf Corsepius * 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 */ -- cgit v1.2.3