summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-22 22:43:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-11-22 22:43:55 +0000
commit712fe158d96ace67d5d4ba4a3c51bc3f2e6f700b (patch)
tree82c7bfba4c05323ceb752c0be170665e4abd8665 /cpukit/score/include/rtems/score/object.h
parent2004-11-22 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-712fe158d96ace67d5d4ba4a3c51bc3f2e6f700b.tar.bz2
2004-11-22 Joel Sherrill <joel@OARcorp.com>
* score/include/rtems/score/object.h, score/src/objectclearname.c, score/src/objectcopynamestring.c: Fixing warning led to making changes to multiple prototypes for object support routines.
Diffstat (limited to 'cpukit/score/include/rtems/score/object.h')
-rw-r--r--cpukit/score/include/rtems/score/object.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 17cb349304..1be8f214d7 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -57,7 +57,7 @@ typedef void * Objects_Name;
typedef boolean (*Objects_Name_comparators)(
void * /* name_1 */,
void * /* name_2 */,
- uint32_t /* length */
+ uint16_t /* length */
);
#if defined(RTEMS_USE_16_BIT_OBJECT)
@@ -410,7 +410,7 @@ void _Objects_Free(
void _Objects_Clear_name(
void *name,
- uint32_t length
+ uint16_t length
);
/*
@@ -423,7 +423,8 @@ void _Objects_Clear_name(
void _Objects_Copy_name_string(
void *source,
- void *destination
+ void *destination,
+ uint16_t length
);
/*