summaryrefslogtreecommitdiffstats
path: root/c/src/optman/rtems/no-part.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 08:29:14 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 08:29:14 +0000
commitc83b5678c9b72f42bb34f7aa2af35ca19c34bd77 (patch)
treec3622e8e17c6e865f704d32765e173c06cafc60a /c/src/optman/rtems/no-part.c
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-c83b5678c9b72f42bb34f7aa2af35ca19c34bd77.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* optman/rtems/no-dpmem.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/optman/rtems/no-part.c')
-rw-r--r--c/src/optman/rtems/no-part.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/optman/rtems/no-part.c b/c/src/optman/rtems/no-part.c
index 6adb2c1639..de982707bc 100644
--- a/c/src/optman/rtems/no-part.c
+++ b/c/src/optman/rtems/no-part.c
@@ -21,7 +21,7 @@
#include <rtems/score/interr.h>
void _Partition_Manager_initialization(
- unsigned32 maximum_partitions
+ uint32_t maximum_partitions
)
{
}
@@ -29,8 +29,8 @@ void _Partition_Manager_initialization(
rtems_status_code rtems_partition_create(
rtems_name name,
void *starting_address,
- unsigned32 length,
- unsigned32 buffer_size,
+ uint32_t length,
+ uint32_t buffer_size,
rtems_attribute attribute_set,
Objects_Id *id
)
@@ -45,7 +45,7 @@ rtems_status_code rtems_partition_create(
rtems_status_code rtems_partition_ident(
rtems_name name,
- unsigned32 node,
+ uint32_t node,
Objects_Id *id
)
{