summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-12-06 09:46:46 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-12-06 09:46:46 +0000
commitf5c5a1db6a61000ce175a9f6ce001d530efa9ff2 (patch)
tree7d98ff92336cfb0a4ce7f52d1c6c1d27db6ddf7f /cpukit/score/include/rtems/score/object.h
parent2006-12-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f5c5a1db6a61000ce175a9f6ce001d530efa9ff2.tar.bz2
Add const qualifiers, use size_t where appropriate.
Diffstat (limited to 'cpukit/score/include/rtems/score/object.h')
-rw-r--r--cpukit/score/include/rtems/score/object.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 4f93e47ecc..3c63ce92b6 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -535,8 +535,8 @@ void _Objects_Free(
* @param[in] length is the length of the object name field.
*/
void _Objects_Clear_name(
- void *name,
- uint16_t length
+ void *name,
+ const size_t length
);
/**
@@ -547,9 +547,9 @@ void _Objects_Clear_name(
* @param[in] length is the number of bytes to copy.
*/
void _Objects_Copy_name_string(
- void *source,
- void *destination,
- uint16_t length
+ const void *source,
+ void *destination,
+ const size_t length
);
/**
@@ -560,9 +560,9 @@ void _Objects_Copy_name_string(
* @param[in] length is the number of bytes to copy.
*/
void _Objects_Copy_name_raw(
- void *source,
- void *destination,
- uint16_t length
+ const void *source,
+ void *destination,
+ const size_t length
);
/**