summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/chain.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-12-29 09:58:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-12-29 09:58:54 +0000
commit9c8195a01495e6f933bf9e4835faa386368e0e29 (patch)
tree65f482132a752d70d4d7e5acda613df90a484372 /cpukit/score/include/rtems/score/chain.h
parentRemove (Obsolete). (diff)
downloadrtems-9c8195a01495e6f933bf9e4835faa386368e0e29.tar.bz2
2004-12-29 Ralf Corsepius <ralf.corsepius@rtems.org>
* score/include/rtems/score/chain.h: Use uint32_t instead of unsigned32. * score/src/chain.c: Remove superfluous type cast.
Diffstat (limited to 'cpukit/score/include/rtems/score/chain.h')
-rw-r--r--cpukit/score/include/rtems/score/chain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/score/include/rtems/score/chain.h
index 46accd3a95..497b00d635 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/score/include/rtems/score/chain.h
@@ -104,8 +104,8 @@ typedef struct {
void _Chain_Initialize(
Chain_Control *the_chain,
void *starting_address,
- unsigned32 number_nodes,
- unsigned32 node_size
+ uint32_t number_nodes,
+ uint32_t node_size
);
#ifndef RTEMS_INLINES