summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp11
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:18:29 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:18:29 +0000
commitd8e681e7fbd86dc032d71c069122e92bc1f20d11 (patch)
tree72fa92b78ced521937bfa70c04a75cce6b289214 /testsuites/mptests/mp11
parent2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-d8e681e7fbd86dc032d71c069122e92bc1f20d11.tar.bz2
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.
Diffstat (limited to 'testsuites/mptests/mp11')
-rw-r--r--testsuites/mptests/mp11/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/mptests/mp11/init.c b/testsuites/mptests/mp11/init.c
index 8b1285ce77..fe904b92ca 100644
--- a/testsuites/mptests/mp11/init.c
+++ b/testsuites/mptests/mp11/init.c
@@ -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,