summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-05-11 15:08:55 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-14 07:25:47 +0200
commit2adf328d050b36e5de2d9a87dc2d22f8696fa378 (patch)
treed656af6b792f6148202bce0344b7fe38876318bb /cpukit
parentrtems: Remove rtems_thread_cpu_usage_t (diff)
downloadrtems-2adf328d050b36e5de2d9a87dc2d22f8696fa378.tar.bz2
rtems: Remove support for RTEMS_DEPRECATED_TYPES
Close #3584.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/include/rtems/rtems/types.h23
-rw-r--r--cpukit/include/rtems/score/basedefs.h6
2 files changed, 0 insertions, 29 deletions
diff --git a/cpukit/include/rtems/rtems/types.h b/cpukit/include/rtems/rtems/types.h
index 994e097afa..e5dd1afc3b 100644
--- a/cpukit/include/rtems/rtems/types.h
+++ b/cpukit/include/rtems/rtems/types.h
@@ -44,29 +44,6 @@ extern "C" {
*/
/**@{**/
-#ifdef RTEMS_DEPRECATED_TYPES
-/**
- * @brief Single precision float type.
- *
- * @deprecated Use @c float instead.
- */
-typedef single_precision rtems_single RTEMS_DEPRECATED;
-
-/**
- * @brief Double precision float type.
- *
- * @deprecated Use @c double instead.
- */
-typedef double_precision rtems_double RTEMS_DEPRECATED;
-
-/**
- * @brief RTEMS boolean type.
- *
- * @deprecated Use @c bool instead
- */
-typedef boolean rtems_boolean RTEMS_DEPRECATED;
-#endif
-
/**
* @brief Classic API @ref ClassicRTEMSSubSecObjectNames "object name" type.
*
diff --git a/cpukit/include/rtems/score/basedefs.h b/cpukit/include/rtems/score/basedefs.h
index 01c773ffe9..95d5fc2999 100644
--- a/cpukit/include/rtems/score/basedefs.h
+++ b/cpukit/include/rtems/score/basedefs.h
@@ -549,12 +549,6 @@ extern void RTEMS_DEQUALIFY_types_not_compatible(void);
#define RTEMS_XSTRING( _x ) RTEMS_STRING( _x )
#ifndef ASM
- #ifdef RTEMS_DEPRECATED_TYPES
- typedef bool boolean RTEMS_DEPRECATED;
- typedef float single_precision RTEMS_DEPRECATED;
- typedef double double_precision RTEMS_DEPRECATED;
- #endif
-
/**
* XXX: Eventually proc_ptr needs to disappear!!!
*/