Changeset 712fe15 in rtems
- Timestamp:
- Nov 22, 2004, 10:43:55 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c66df03
- Parents:
- fc63544
- Location:
- cpukit
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rfc63544 r712fe15 1 2004-11-22 Joel Sherrill <joel@OARcorp.com> 2 3 * score/include/rtems/score/object.h, score/src/objectclearname.c, 4 score/src/objectcopynamestring.c: Fixing warning led to making 5 changes to multiple prototypes for object support routines. 6 1 7 2004-11-22 Joel Sherrill <joel@OARcorp.com> 2 8 -
cpukit/score/include/rtems/score/object.h
rfc63544 r712fe15 58 58 void * /* name_1 */, 59 59 void * /* name_2 */, 60 uint 32_t /* length */60 uint16_t /* length */ 61 61 ); 62 62 … … 411 411 void _Objects_Clear_name( 412 412 void *name, 413 uint 32_t length413 uint16_t length 414 414 ); 415 415 … … 424 424 void _Objects_Copy_name_string( 425 425 void *source, 426 void *destination 426 void *destination, 427 uint16_t length 427 428 ); 428 429 -
cpukit/score/src/objectclearname.c
rfc63544 r712fe15 35 35 void _Objects_Clear_name( 36 36 void *name, 37 uint 32_t length37 uint16_t length 38 38 ) 39 39 { -
cpukit/score/src/objectcopynamestring.c
rfc63544 r712fe15 34 34 void _Objects_Copy_name_string( 35 35 void *source, 36 void *destination 36 void *destination, 37 uint16_t length 37 38 ) 38 39 {
Note: See TracChangeset
for help on using the changeset viewer.