summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/inline')
-rw-r--r--cpukit/score/inline/rtems/score/object.inl17
1 files changed, 17 insertions, 0 deletions
diff --git a/cpukit/score/inline/rtems/score/object.inl b/cpukit/score/inline/rtems/score/object.inl
index 891f968d86..32105ddba2 100644
--- a/cpukit/score/inline/rtems/score/object.inl
+++ b/cpukit/score/inline/rtems/score/object.inl
@@ -101,6 +101,23 @@ RTEMS_INLINE_ROUTINE uint32_t _Objects_Get_index(
}
/**
+ * This function returns TRUE if the api is valid.
+ *
+ * @param[in] the_api is the api portion of an object ID.
+ *
+ * @return This method returns TRUE if the specified api value is valid
+ * and FALSE otherwise.
+ */
+RTEMS_INLINE_ROUTINE boolean _Objects_Is_api_valid(
+ uint32_t the_api
+)
+{
+ if ( !the_api || the_api > OBJECTS_APIS_LAST )
+ return FALSE;
+ return TRUE;
+}
+
+/**
* This function returns TRUE if the class is valid.
*
* @param[in] the_class is the class portion of an object ID.