summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/rtemsobjectidapimaximum.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-02-02 14:23:52 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-02-03 05:57:06 +0100
commit8a95e6f820f066451e1325592c9c0f18fa205c17 (patch)
treeef684ed217a4af5ac6e20eaf7e578b83d6afb50c /cpukit/rtems/src/rtemsobjectidapimaximum.c
parentscore: Define _Assert() for static analysis runs (diff)
downloadrtems-8a95e6f820f066451e1325592c9c0f18fa205c17.tar.bz2
rtems: Rework object services API
Add a "Constraints" paragraph to the documentation. Provide prototypes for programming language bindings. Use the macro implementation to implement the corresponding functions. Update #3993.
Diffstat (limited to 'cpukit/rtems/src/rtemsobjectidapimaximum.c')
-rw-r--r--cpukit/rtems/src/rtemsobjectidapimaximum.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/cpukit/rtems/src/rtemsobjectidapimaximum.c b/cpukit/rtems/src/rtemsobjectidapimaximum.c
index 3d624b0b5a..d432647bd3 100644
--- a/cpukit/rtems/src/rtemsobjectidapimaximum.c
+++ b/cpukit/rtems/src/rtemsobjectidapimaximum.c
@@ -20,15 +20,16 @@
#include "config.h"
#endif
-#include <rtems/score/objectimpl.h>
+#include <rtems/rtems/object.h>
-/*
- * This is implemented as a macro. This body is provided to support
- * bindings from non-C based languages.
- */
-int rtems_object_id_api_maximum(void);
+static int _RTEMS_Object_id_api_maximum( void )
+{
+ return rtems_object_id_api_maximum();
+}
+
+#undef rtems_object_id_api_maximum
-int rtems_object_id_api_maximum(void)
+int rtems_object_id_api_maximum( void )
{
- return OBJECTS_APIS_LAST;
+ return _RTEMS_Object_id_api_maximum();
}