2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>

* score/include/rtems/score/chain.h, score/src/chain.c:
	Change _Chain_Initialize to using size_t.
This commit is contained in:
Ralf Corsepius
2007-03-13 05:17:12 +00:00
parent dfb3c2b71f
commit d38ac0e614
3 changed files with 10 additions and 5 deletions
+5
View File
@@ -1,3 +1,8 @@
2007-03-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* score/include/rtems/score/chain.h, score/src/chain.c:
Change _Chain_Initialize to using size_t.
2007-03-12 Joel Sherrill <joel@OARcorp.com>
* libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Rename
+2 -2
View File
@@ -109,8 +109,8 @@ typedef struct {
void _Chain_Initialize(
Chain_Control *the_chain,
void *starting_address,
uint32_t number_nodes,
uint32_t node_size
size_t number_nodes,
size_t node_size
);
/**
+3 -3
View File
@@ -43,11 +43,11 @@
void _Chain_Initialize(
Chain_Control *the_chain,
void *starting_address,
uint32_t number_nodes,
uint32_t node_size
size_t number_nodes,
size_t node_size
)
{
uint32_t count;
size_t count;
Chain_Node *current;
Chain_Node *next;