Changeset e25611d in rtems
- Timestamp:
- Nov 23, 2009, 2:53:28 PM (11 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- ea6eb431
- Parents:
- fdc57ca
- Location:
- doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/ChangeLog
rfdc57ca re25611d 1 2009-11-23 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 PR 1460/cpukit 4 * user/object.t: Change return type on methods accessing portions of 5 RTEMS Ids to int. This allows -1 to be return on error. 6 1 7 2009-11-09 Joel Sherrill <joel.sherrill@oarcorp.com> 2 8 -
doc/user/object.t
rfdc57ca re25611d 149 149 void prettyPrintObjectId(rtems_id id) 150 150 @{ 151 uint32_t tmpAPI, tmpClass;151 int tmpAPI, tmpClass; 152 152 153 153 tmpAPI = rtems_object_id_get_api(id), … … 381 381 @findex rtems_object_id_get_api 382 382 @example 383 uint32_t rtems_object_id_get_api(383 int rtems_object_id_get_api( 384 384 rtems_id id 385 385 ); … … 423 423 @findex rtems_object_id_get_class 424 424 @example 425 uint32_t rtems_object_id_get_class(425 int rtems_object_id_get_class( 426 426 rtems_id id 427 427 ); … … 465 465 @findex rtems_object_id_get_node 466 466 @example 467 uint32_t rtems_object_id_get_node(467 int rtems_object_id_get_node( 468 468 rtems_id id 469 469 ); … … 507 507 @findex rtems_object_id_get_index 508 508 @example 509 uint32_t rtems_object_id_get_index(509 int rtems_object_id_get_index( 510 510 rtems_id id 511 511 ); … … 550 550 @example 551 551 rtems_id rtems_build_id( 552 uint32_t the_api,553 uint32_t the_class,554 uint32_t the_node,555 uint32_t the_index552 int the_api, 553 int the_class, 554 int the_node, 555 int the_index 556 556 ); 557 557 @end example … … 599 599 @findex rtems_object_id_api_minimum 600 600 @example 601 uint32_t rtems_object_id_api_minimum(void);601 int rtems_object_id_api_minimum(void); 602 602 @end example 603 603 @end ifset … … 635 635 @findex rtems_object_id_api_maximum 636 636 @example 637 uint32_t rtems_object_id_api_maximum(void);637 int rtems_object_id_api_maximum(void); 638 638 @end example 639 639 @end ifset … … 671 671 @findex rtems_object_api_minimum_class 672 672 @example 673 uint32_t rtems_object_api_minimum_class(674 uint32_t api673 int rtems_object_api_minimum_class( 674 int api 675 675 ); 676 676 @end example … … 715 715 @findex rtems_object_api_maximum_class 716 716 @example 717 uint32_t rtems_object_api_maximum_class(718 uint32_t api717 int rtems_object_api_maximum_class( 718 int api 719 719 ); 720 720 @end example … … 761 761 @example 762 762 const char *rtems_object_get_api_name( 763 uint32_t api763 int api 764 764 ); 765 765 @end example … … 807 807 @example 808 808 const char *rtems_object_get_api_class_name( 809 uint32_t the_api,810 uint32_t the_class809 int the_api, 810 int the_class 811 811 ); 812 812 @end example … … 858 858 @example 859 859 rtems_status_code rtems_object_get_class_information( 860 uint32_tthe_api,861 uint32_tthe_class,860 int the_api, 861 int the_class, 862 862 rtems_object_api_class_information *info 863 863 ); … … 895 895 rtems_id minimum_id; 896 896 rtems_id maximum_id; 897 uint32_tmaximum;897 int maximum; 898 898 bool auto_extend; 899 uint32_tunallocated;899 int unallocated; 900 900 @} rtems_object_api_class_information; 901 901 @end example
Note: See TracChangeset
for help on using the changeset viewer.