2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>

* mp02/task1.c, mp03/system.h, mp03/task1.c, mp04/task1.c,
	mp05/system.h, mp06/task1.c, mp07/task1.c, mp08/task1.c,
	mp09/recvmsg.c, mp09/sendmsg.c, mp09/task1.c, mp10/task1.c,
	mp11/init.c, mp12/init.c, mp13/task1.c, mp14/evtask1.c,
	mp14/evtmtask.c, mp14/init.c, mp14/msgtask1.c, mp14/pttask1.c,
	mp14/smtask1.c, mp14/system.h: Convert to using c99 fixed size
	types.
This commit is contained in:
Ralf Corsepius
2004-03-30 11:18:29 +00:00
parent ac3a07ae8e
commit d8e681e7fb
23 changed files with 49 additions and 39 deletions

View File

@@ -27,7 +27,7 @@
#define TEST_INIT
#include "system.h"
rtems_unsigned8 my_partition[0x30000] CPU_STRUCTURE_ALIGNMENT;
uint8_t my_partition[0x30000] CPU_STRUCTURE_ALIGNMENT;
rtems_task Init(
rtems_task_argument argument
@@ -90,7 +90,7 @@ rtems_task Init(
puts( "Attempting to create Partition (Global)" );
status = rtems_partition_create(
1,
(rtems_unsigned8 *) my_partition,
(uint8_t *) my_partition,
128,
64,
RTEMS_GLOBAL,