summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/score/inline/rtems/score/object.inl17
2 files changed, 21 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 7b9c0693d5..37396827f9 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2008-01-07 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * score/inline/rtems/score/object.inl: Add _Objects_Is_api_valid.
+
+2008-01-07 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* score/src/threadget.c: Use _Objects_Is_api_valid rather than open
coding it.
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.