[rtems commit] rtems: Remove support for RTEMS_DEPRECATED_TYPES

Sebastian Huber sebh at rtems.org
Tue Jul 14 05:26:19 UTC 2020


Module:    rtems
Branch:    master
Commit:    2adf328d050b36e5de2d9a87dc2d22f8696fa378
Changeset: http://git.rtems.org/rtems/commit/?id=2adf328d050b36e5de2d9a87dc2d22f8696fa378

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Mon May 11 15:08:55 2020 +0200

rtems: Remove support for RTEMS_DEPRECATED_TYPES

Close #3584.

---

 cpukit/include/rtems/rtems/types.h    | 23 -----------------------
 cpukit/include/rtems/score/basedefs.h |  6 ------
 2 files changed, 29 deletions(-)

diff --git a/cpukit/include/rtems/rtems/types.h b/cpukit/include/rtems/rtems/types.h
index 994e097..e5dd1af 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 01c773f..95d5fc2 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!!!
    */



More information about the vc mailing list