summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix
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/score/cpu/unix
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/score/cpu/unix')
-rw-r--r--cpukit/score/cpu/unix/ChangeLog4
-rw-r--r--cpukit/score/cpu/unix/rtems/score/types.h9
2 files changed, 4 insertions, 9 deletions
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 */