Changeset f5c5a1db in rtems
- Timestamp:
- Dec 6, 2006, 9:46:46 AM (14 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c73f11d
- Parents:
- 6876ce7
- Location:
- cpukit/score
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/include/rtems/score/object.h
r6876ce7 rf5c5a1db 536 536 */ 537 537 void _Objects_Clear_name( 538 void *name,539 uint16_tlength538 void *name, 539 const size_t length 540 540 ); 541 541 … … 548 548 */ 549 549 void _Objects_Copy_name_string( 550 void*source,551 void *destination,552 uint16_tlength550 const void *source, 551 void *destination, 552 const size_t length 553 553 ); 554 554 … … 561 561 */ 562 562 void _Objects_Copy_name_raw( 563 void*source,564 void *destination,565 uint16_tlength563 const void *source, 564 void *destination, 565 const size_t length 566 566 ); 567 567 -
cpukit/score/src/objectclearname.c
r6876ce7 rf5c5a1db 38 38 39 39 void _Objects_Clear_name( 40 void *name,41 uint16_tlength40 void *name, 41 const size_t length 42 42 ) 43 43 { 44 uint32_tindex;45 uint32_tmaximum = length / OBJECTS_NAME_ALIGNMENT;44 size_t index; 45 size_t maximum = length / OBJECTS_NAME_ALIGNMENT; 46 46 uint32_t *name_ptr = (uint32_t *) name; 47 47 -
cpukit/score/src/objectcopynameraw.c
r6876ce7 rf5c5a1db 37 37 38 38 void _Objects_Copy_name_raw( 39 void*source,40 void *destination,41 uint16_tlength39 const void *source, 40 void *destination, 41 const size_t length 42 42 ) 43 43 { 44 44 uint32_t *source_p = (uint32_t *) source; 45 45 uint32_t *destination_p = (uint32_t *) destination; 46 uint32_t tmp_length = length / OBJECTS_NAME_ALIGNMENT;46 size_t tmp_length = length / OBJECTS_NAME_ALIGNMENT; 47 47 48 48 while ( tmp_length-- ) -
cpukit/score/src/objectcopynamestring.c
r6876ce7 rf5c5a1db 37 37 38 38 void _Objects_Copy_name_string( 39 void*source,40 void *destination,41 uint16_tlength39 const void *source, 40 void *destination, 41 const size_t length 42 42 ) 43 43 {
Note: See TracChangeset
for help on using the changeset viewer.