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.
This commit is contained in:
Ralf Corsepius
2004-12-29 09:58:54 +00:00
parent 8f36a34eb4
commit 9c8195a014
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -1,3 +1,9 @@
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.
2004-12-10 Ralf Corsepius <ralf.corsepius@rtems.org>
* posix/include/aio.h, posix/include/devctl.h,
+2 -2
View File
@@ -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
+1 -1
View File
@@ -50,7 +50,7 @@ void _Chain_Initialize(
count = number_nodes;
current = _Chain_Head( the_chain );
the_chain->permanent_null = NULL;
next = (Chain_Node *)starting_address;
next = starting_address;
while ( count-- ) {
current->next = next;
next->previous = current;