[PATCH] score: Add RTEMS_ALIAS()

Sebastian Huber sebastian.huber at embedded-brains.de
Tue Nov 22 08:21:14 UTC 2016


---
 cpukit/score/include/rtems/score/basedefs.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/cpukit/score/include/rtems/score/basedefs.h b/cpukit/score/include/rtems/score/basedefs.h
index d142163..22cc246 100644
--- a/cpukit/score/include/rtems/score/basedefs.h
+++ b/cpukit/score/include/rtems/score/basedefs.h
@@ -180,6 +180,16 @@
 #endif
 
 /**
+ * @brief Instructs the compiler to generate an alias to the specified target
+ * function.
+ */
+#if defined(__GNUC__)
+  #define RTEMS_ALIAS( _target ) __attribute__((__alias__(#_target)))
+#else
+  #define RTEMS_ALIAS( _target )
+#endif
+
+/**
  * @brief Instructs the compiler to enforce the specified alignment.
  */
 #if defined(__GNUC__)
-- 
1.8.4.5



More information about the devel mailing list