2010-06-18 Ralf Corsépius <ralf.corsepius@rtems.org>

* rtems/include/rtems/rtems/object.h,
	rtems/src/rtemsobjectidapimaximum.c:
	Let rtems_object_id_api_maximum() return OBJECTS_APIS_LAST.
This commit is contained in:
Ralf Corsepius
2010-06-18 13:29:29 +00:00
parent 8d3088716d
commit 70874532b0
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2010-06-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* 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 <ralf.corsepius@rtems.org> 2010-06-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/rtems/mkrootfs.h: doxygen cosmetics. * libnetworking/rtems/mkrootfs.h: doxygen cosmetics.

View File

@@ -240,7 +240,7 @@ rtems_status_code rtems_object_set_name(
* @note A body is also provided. * @note A body is also provided.
*/ */
#define rtems_object_id_api_maximum() \ #define rtems_object_id_api_maximum() \
OBJECTS_ITRON_API OBJECTS_APIS_LAST
/** /**
* @brief Get Lowest Valid Class Value * @brief Get Lowest Valid Class Value

View File

@@ -22,5 +22,5 @@
#undef 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_ITRON_API; return OBJECTS_APIS_LAST;
} }