mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-22 03:35:20 +08:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
/**
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user