summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/types.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-12-13 07:24:10 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-12-13 07:24:10 +0000
commitf065e428647610774351ace7c5aabfcfa6a9ca74 (patch)
treed376afa893174da9d1a3ace608b0a385462f027c /cpukit/rtems/include/rtems/rtems/types.h
parentRegenerate. (diff)
downloadrtems-f065e428647610774351ace7c5aabfcfa6a9ca74.tar.bz2
Abandon backward compatibility types.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/types.h20
1 files changed, 1 insertions, 19 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/types.h b/cpukit/rtems/include/rtems/rtems/types.h
index 810f4767b5..71af603de0 100644
--- a/cpukit/rtems/include/rtems/rtems/types.h
+++ b/cpukit/rtems/include/rtems/rtems/types.h
@@ -27,24 +27,6 @@ extern "C" {
*/
#include <rtems/stdint.h>
-
-/* backward compatibility types */
-typedef uint8_t rtems_unsigned8;
-typedef uint16_t rtems_unsigned16;
-typedef uint32_t rtems_unsigned32;
-#if defined(uint64_t)
-/* FIXME: Some targets do not have 64-bit types */
-typedef uint64_t rtems_unsigned64;
-#endif
-
-typedef int8_t rtems_signed8;
-typedef int16_t rtems_signed16;
-typedef int32_t rtems_signed32;
-#if defined(int64_t)
-/* FIXME: Some targets do not have 64-bit types */
-typedef int64_t rtems_signed64;
-#endif
-
#include <rtems/score/heap.h>
#include <rtems/score/object.h>
#include <rtems/score/priority.h>
@@ -61,7 +43,7 @@ typedef double_precision rtems_double; /* double precision float */
typedef boolean rtems_boolean;
-typedef uint32_t rtems_name;
+typedef uint32_t rtems_name;
typedef Objects_Id rtems_id;
typedef Context_Control rtems_context;