From 70874532b0b52fca5e40beeaccfdf080960bdd41 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 18 Jun 2010 13:29:29 +0000 Subject: [PATCH] =?UTF-8?q?2010-06-18=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * rtems/include/rtems/rtems/object.h, rtems/src/rtemsobjectidapimaximum.c: Let rtems_object_id_api_maximum() return OBJECTS_APIS_LAST. --- cpukit/ChangeLog | 6 ++++++ cpukit/rtems/include/rtems/rtems/object.h | 2 +- cpukit/rtems/src/rtemsobjectidapimaximum.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index ca154f1e9f..1666873784 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,9 @@ +2010-06-18 Ralf Corsépius + + * rtems/include/rtems/rtems/object.h, + rtems/src/rtemsobjectidapimaximum.c: + Let rtems_object_id_api_maximum() return OBJECTS_APIS_LAST. + 2010-06-18 Ralf Corsépius * libnetworking/rtems/mkrootfs.h: doxygen cosmetics. diff --git a/cpukit/rtems/include/rtems/rtems/object.h b/cpukit/rtems/include/rtems/rtems/object.h index 2d473b33d3..72d65c6562 100644 --- a/cpukit/rtems/include/rtems/rtems/object.h +++ b/cpukit/rtems/include/rtems/rtems/object.h @@ -240,7 +240,7 @@ rtems_status_code rtems_object_set_name( * @note A body is also provided. */ #define rtems_object_id_api_maximum() \ - OBJECTS_ITRON_API + OBJECTS_APIS_LAST /** * @brief Get Lowest Valid Class Value diff --git a/cpukit/rtems/src/rtemsobjectidapimaximum.c b/cpukit/rtems/src/rtemsobjectidapimaximum.c index bfc00d4cd5..fbf6c19d02 100644 --- a/cpukit/rtems/src/rtemsobjectidapimaximum.c +++ b/cpukit/rtems/src/rtemsobjectidapimaximum.c @@ -22,5 +22,5 @@ #undef rtems_object_id_api_maximum int rtems_object_id_api_maximum(void) { - return OBJECTS_ITRON_API; + return OBJECTS_APIS_LAST; }