summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-07 23:33:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-07 23:33:17 +0000
commitd6c8b56b62a352da122eca00705e672894e9828c (patch)
tree241396b494bafd325ea97cc24d6618cc5d95283a /cpukit/score/include/rtems/score/object.h
parent2009-07-07 Chris Johns <chrisj@rtems.org> (diff)
downloadrtems-d6c8b56b62a352da122eca00705e672894e9828c.tar.bz2
2009-07-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/rtemsobjectapimaximumclass.c, score/include/rtems/score/object.h, score/src/objectapimaximumclass.c, score/src/objectgetinfo.c: Change return type of API maximum class methods to unsigned.
Diffstat (limited to 'cpukit/score/include/rtems/score/object.h')
-rw-r--r--cpukit/score/include/rtems/score/object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 54f4dc5875..8f524e5701 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -492,9 +492,9 @@ void _Objects_Initialize_information (
*
* @param[in] api is the API of interest
*
- * @return A positive integer on success and -1 otherwise.
+ * @return A positive integer on success and 0 otherwise.
*/
-int _Objects_API_maximum_class(
+unsigned int _Objects_API_maximum_class(
uint32_t api
);