summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-11-17 05:58:06 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-11-17 05:58:06 +0000
commit795da078a117e5c7c47fc242b32e25830d6a1f6d (patch)
tree121e4b3f556208ebc946aaf5b3b4b1dc2cabf660 /cpukit
parent2006-11-16 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-795da078a117e5c7c47fc242b32e25830d6a1f6d.tar.bz2
2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Remove unsigned64, signed64.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/arm/ChangeLog4
-rw-r--r--cpukit/score/cpu/arm/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/avr/ChangeLog4
-rw-r--r--cpukit/score/cpu/avr/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/bfin/ChangeLog4
-rw-r--r--cpukit/score/cpu/bfin/rtems/score/types.h6
-rw-r--r--cpukit/score/cpu/c4x/ChangeLog4
-rw-r--r--cpukit/score/cpu/c4x/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/h8300/ChangeLog4
-rw-r--r--cpukit/score/cpu/h8300/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/i386/ChangeLog4
-rw-r--r--cpukit/score/cpu/i386/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/m68k/ChangeLog4
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/mips/ChangeLog4
-rw-r--r--cpukit/score/cpu/mips/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/nios2/ChangeLog4
-rw-r--r--cpukit/score/cpu/nios2/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/no_cpu/ChangeLog4
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/score/types.h6
-rw-r--r--cpukit/score/cpu/powerpc/ChangeLog4
-rw-r--r--cpukit/score/cpu/powerpc/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/sh/ChangeLog4
-rw-r--r--cpukit/score/cpu/sh/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/sparc/ChangeLog4
-rw-r--r--cpukit/score/cpu/sparc/rtems/score/types.h4
-rw-r--r--cpukit/score/cpu/unix/ChangeLog4
-rw-r--r--cpukit/score/cpu/unix/rtems/score/types.h9
28 files changed, 56 insertions, 65 deletions
diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog
index ad1df0f6ca..1cbae85760 100644
--- a/cpukit/score/cpu/arm/ChangeLog
+++ b/cpukit/score/cpu/arm/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-09-11 Joel Sherrill <joel@OARcorp.com>
* cpu.c: Remove warning.
diff --git a/cpukit/score/cpu/arm/rtems/score/types.h b/cpukit/score/cpu/arm/rtems/score/types.h
index 8edfc13a10..43b5eb7c4b 100644
--- a/cpukit/score/cpu/arm/rtems/score/types.h
+++ b/cpukit/score/cpu/arm/rtems/score/types.h
@@ -32,10 +32,6 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef uint16_t Priority_Bit_map_control;
diff --git a/cpukit/score/cpu/avr/ChangeLog b/cpukit/score/cpu/avr/ChangeLog
index e57a655e4e..c111060460 100644
--- a/cpukit/score/cpu/avr/ChangeLog
+++ b/cpukit/score/cpu/avr/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-01-16 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Part of a large patch to improve Doxygen output.
diff --git a/cpukit/score/cpu/avr/rtems/score/types.h b/cpukit/score/cpu/avr/rtems/score/types.h
index b5c59a065a..470c030e25 100644
--- a/cpukit/score/cpu/avr/rtems/score/types.h
+++ b/cpukit/score/cpu/avr/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef uint64_t unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef int64_t signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/bfin/ChangeLog b/cpukit/score/cpu/bfin/ChangeLog
index e5794e0fd1..672e5faca6 100644
--- a/cpukit/score/cpu/bfin/ChangeLog
+++ b/cpukit/score/cpu/bfin/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-11-09 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/bfin/bf533.h, rtems/bfin/bfin.h: Remove stray whitespaces.
diff --git a/cpukit/score/cpu/bfin/rtems/score/types.h b/cpukit/score/cpu/bfin/rtems/score/types.h
index e9feebcdc0..ed4033f177 100644
--- a/cpukit/score/cpu/bfin/rtems/score/types.h
+++ b/cpukit/score/cpu/bfin/rtems/score/types.h
@@ -27,15 +27,9 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-/** This defines an unsigned 64-bit integer. */
-typedef unsigned long long unsigned64;
-
/** This defines the type for a priority bit map entry. */
typedef uint16_t Priority_Bit_map_control;
-/** This defines the type for a 64 bit signed integer */
-typedef signed long long signed64;
-
/** This defines the type for a Boolean value, */
typedef uint32_t boolean; /* Boolean value */
diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog
index 9d93922440..ef3ed812d6 100644
--- a/cpukit/score/cpu/c4x/ChangeLog
+++ b/cpukit/score/cpu/c4x/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-01-16 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Part of a large patch to improve Doxygen output.
diff --git a/cpukit/score/cpu/c4x/rtems/score/types.h b/cpukit/score/cpu/c4x/rtems/score/types.h
index e4ac80fa02..d2245db6ba 100644
--- a/cpukit/score/cpu/c4x/rtems/score/types.h
+++ b/cpukit/score/cpu/c4x/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog
index 084d2c083e..7ee2281cd6 100644
--- a/cpukit/score/cpu/h8300/ChangeLog
+++ b/cpukit/score/cpu/h8300/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-08-30 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Revert change. It did not appear to correct all
diff --git a/cpukit/score/cpu/h8300/rtems/score/types.h b/cpukit/score/cpu/h8300/rtems/score/types.h
index 33d9420ebe..c0556ef3f4 100644
--- a/cpukit/score/cpu/h8300/rtems/score/types.h
+++ b/cpukit/score/cpu/h8300/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog
index 2316547971..aa8b20ad0e 100644
--- a/cpukit/score/cpu/i386/ChangeLog
+++ b/cpukit/score/cpu/i386/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-02-01 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Increase default stack size on i386 from 1K to 4K.
diff --git a/cpukit/score/cpu/i386/rtems/score/types.h b/cpukit/score/cpu/i386/rtems/score/types.h
index f661ae32ef..6652fc1d4c 100644
--- a/cpukit/score/cpu/i386/rtems/score/types.h
+++ b/cpukit/score/cpu/i386/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog
index dcddc9fda3..01bef9a3e8 100644
--- a/cpukit/score/cpu/m68k/ChangeLog
+++ b/cpukit/score/cpu/m68k/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-06-19 Till Straumann <strauman@slac.stanford.edu>
PR 1091/patch
diff --git a/cpukit/score/cpu/m68k/rtems/score/types.h b/cpukit/score/cpu/m68k/rtems/score/types.h
index 76495ba4f6..b79ccac47a 100644
--- a/cpukit/score/cpu/m68k/rtems/score/types.h
+++ b/cpukit/score/cpu/m68k/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog
index 5007e66b32..83c7410aa2 100644
--- a/cpukit/score/cpu/mips/ChangeLog
+++ b/cpukit/score/cpu/mips/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-06-02 Greg Menke <gregory.menke@gsfc.nasa.gov>
* cpu.c: Added __mips==32 to fix build problems on those targets
diff --git a/cpukit/score/cpu/mips/rtems/score/types.h b/cpukit/score/cpu/mips/rtems/score/types.h
index c5a218e214..c5f13f8261 100644
--- a/cpukit/score/cpu/mips/rtems/score/types.h
+++ b/cpukit/score/cpu/mips/rtems/score/types.h
@@ -32,12 +32,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/nios2/ChangeLog b/cpukit/score/cpu/nios2/ChangeLog
index 05836ba0eb..ef03133716 100644
--- a/cpukit/score/cpu/nios2/ChangeLog
+++ b/cpukit/score/cpu/nios2/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-08-10 Joel Sherrill <joel@OARcorp.com>
* .cvsignore: New file.
diff --git a/cpukit/score/cpu/nios2/rtems/score/types.h b/cpukit/score/cpu/nios2/rtems/score/types.h
index 17ffaf5f5f..4357cf9803 100644
--- a/cpukit/score/cpu/nios2/rtems/score/types.h
+++ b/cpukit/score/cpu/nios2/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog
index dbc5ba076b..a7988ef634 100644
--- a/cpukit/score/cpu/no_cpu/ChangeLog
+++ b/cpukit/score/cpu/no_cpu/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-01-16 Joel Sherrill <joel@OARcorp.com>
* rtems/asm.h, rtems/score/cpu.h, rtems/score/types.h: Part of a large
diff --git a/cpukit/score/cpu/no_cpu/rtems/score/types.h b/cpukit/score/cpu/no_cpu/rtems/score/types.h
index e3703d976a..7587db3cc6 100644
--- a/cpukit/score/cpu/no_cpu/rtems/score/types.h
+++ b/cpukit/score/cpu/no_cpu/rtems/score/types.h
@@ -31,15 +31,9 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-/** This defines an unsigned 64-bit integer. */
-typedef unsigned long long unsigned64;
-
/** This defines the type for a priority bit map entry. */
typedef uint16_t Priority_Bit_map_control;
-/** This defines the type for a 64 bit signed integer */
-typedef signed long long signed64;
-
/** This defines the type for a Boolean value, */
typedef uint32_t boolean; /* Boolean value */
diff --git a/cpukit/score/cpu/powerpc/ChangeLog b/cpukit/score/cpu/powerpc/ChangeLog
index de4e664d21..9f070740ae 100644
--- a/cpukit/score/cpu/powerpc/ChangeLog
+++ b/cpukit/score/cpu/powerpc/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-08-09 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Because gcc implicitly uses floating point turn on
diff --git a/cpukit/score/cpu/powerpc/rtems/score/types.h b/cpukit/score/cpu/powerpc/rtems/score/types.h
index 15617d09ff..70bf4edd29 100644
--- a/cpukit/score/cpu/powerpc/rtems/score/types.h
+++ b/cpukit/score/cpu/powerpc/rtems/score/types.h
@@ -48,12 +48,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint32_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/sh/ChangeLog b/cpukit/score/cpu/sh/ChangeLog
index e5224b9ed8..d982f7f82b 100644
--- a/cpukit/score/cpu/sh/ChangeLog
+++ b/cpukit/score/cpu/sh/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-08-10 Joel Sherrill <joel@OARcorp.com>
* cpu.c, rtems/score/sh.h: Recognize sh2e variant so multilibs will all
diff --git a/cpukit/score/cpu/sh/rtems/score/types.h b/cpukit/score/cpu/sh/rtems/score/types.h
index 2484b3bf5a..b237a5a976 100644
--- a/cpukit/score/cpu/sh/rtems/score/types.h
+++ b/cpukit/score/cpu/sh/rtems/score/types.h
@@ -41,12 +41,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint16_t boolean; /* Boolean value, external */
/* data bus has 16 bits */
diff --git a/cpukit/score/cpu/sparc/ChangeLog b/cpukit/score/cpu/sparc/ChangeLog
index 2ab7895933..da8ba8683e 100644
--- a/cpukit/score/cpu/sparc/ChangeLog
+++ b/cpukit/score/cpu/sparc/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-11-14 Jiri Gaisler <jiri@gaisler.com>
* cpu_asm.S: Properly support synchronous traps.
diff --git a/cpukit/score/cpu/sparc/rtems/score/types.h b/cpukit/score/cpu/sparc/rtems/score/types.h
index 6652791907..9237f01ed1 100644
--- a/cpukit/score/cpu/sparc/rtems/score/types.h
+++ b/cpukit/score/cpu/sparc/rtems/score/types.h
@@ -31,12 +31,8 @@ extern "C" {
* This section defines the basic types for this processor.
*/
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
typedef uint16_t Priority_Bit_map_control;
-typedef signed long long signed64; /* 64 bit signed integer */
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */
diff --git a/cpukit/score/cpu/unix/ChangeLog b/cpukit/score/cpu/unix/ChangeLog
index e975f30fa6..d0293e1429 100644
--- a/cpukit/score/cpu/unix/ChangeLog
+++ b/cpukit/score/cpu/unix/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * rtems/score/types.h: Remove unsigned64, signed64.
+
2006-01-16 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Part of a large patch to improve Doxygen output.
diff --git a/cpukit/score/cpu/unix/rtems/score/types.h b/cpukit/score/cpu/unix/rtems/score/types.h
index 0ed9a72479..9e26d12234 100644
--- a/cpukit/score/cpu/unix/rtems/score/types.h
+++ b/cpukit/score/cpu/unix/rtems/score/types.h
@@ -42,15 +42,6 @@ extern "C" {
typedef uint16_t Priority_Bit_map_control;
-
-/*
- * some C++ compilers (eg: HP's) don't do 'long long'
- */
-#if defined(__GNUC__)
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-typedef signed long long signed64; /* 64 bit signed integer */
-#endif
-
typedef uint32_t boolean; /* Boolean value */
typedef float single_precision; /* single precision float */