summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/part.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 16:04:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 16:04:42 +0000
commit1d496f6eec4ff18ebfeba836059fa4a4f3a3916b (patch)
tree4a863bf73c2b0ade90c3865331db375904f45b93 /cpukit/rtems/include/rtems/rtems/part.h
parent2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-1d496f6eec4ff18ebfeba836059fa4a4f3a3916b.tar.bz2
2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org>
* rtems/include/rtems.h, rtems/include/rtems/rtems/asr.h, rtems/include/rtems/rtems/attr.h, rtems/include/rtems/rtems/clock.h, rtems/include/rtems/rtems/config.h, rtems/include/rtems/rtems/dpmem.h, rtems/include/rtems/rtems/eventset.h, rtems/include/rtems/rtems/message.h, rtems/include/rtems/rtems/modes.h, rtems/include/rtems/rtems/msgmp.h, rtems/include/rtems/rtems/options.h, rtems/include/rtems/rtems/part.h, rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/region.h, rtems/include/rtems/rtems/regionmp.h, rtems/include/rtems/rtems/sem.h, rtems/include/rtems/rtems/support.h, rtems/include/rtems/rtems/taskmp.h, rtems/include/rtems/rtems/tasks.h, rtems/include/rtems/rtems/timer.h, rtems/inline/rtems/rtems/part.inl, rtems/inline/rtems/rtems/region.inl, rtems/macros/rtems/rtems/part.inl, rtems/src/attr.c, rtems/src/dpmem.c, rtems/src/dpmemcreate.c, rtems/src/dpmemexternal2internal.c, rtems/src/dpmeminternal2external.c, rtems/src/eventseize.c, rtems/src/msg.c, rtems/src/msgmp.c, rtems/src/msgqallocate.c, rtems/src/msgqbroadcast.c, rtems/src/msgqcreate.c, rtems/src/msgqflush.c, rtems/src/msgqgetnumberpending.c, rtems/src/msgqident.c, rtems/src/msgqreceive.c, rtems/src/msgqsend.c, rtems/src/msgqsubmit.c, rtems/src/msgqtranslatereturncode.c, rtems/src/msgqurgent.c, rtems/src/part.c, rtems/src/partcreate.c, rtems/src/partident.c, rtems/src/partmp.c, rtems/src/ratemon.c, rtems/src/region.c, rtems/src/regioncreate.c, rtems/src/regionextend.c, rtems/src/regiongetsegment.c, rtems/src/regiongetsegmentsize.c, rtems/src/regionmp.c, rtems/src/regionreturnsegment.c, rtems/src/rtemstimer.c, rtems/src/sem.c, rtems/src/semcreate.c, rtems/src/semident.c, rtems/src/semmp.c, rtems/src/semobtain.c, rtems/src/semtranslatereturncode.c, rtems/src/taskcreate.c, rtems/src/taskgetnote.c, rtems/src/taskident.c, rtems/src/taskinitusers.c, rtems/src/taskmp.c, rtems/src/taskrestart.c, rtems/src/tasks.c, rtems/src/tasksetnote.c, rtems/src/taskstart.c, rtems/src/timerserver.c: Convert to using c99 fixed size types.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/part.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/part.h b/cpukit/rtems/include/rtems/rtems/part.h
index 08dd0225ef..9f1a112bc8 100644
--- a/cpukit/rtems/include/rtems/rtems/part.h
+++ b/cpukit/rtems/include/rtems/rtems/part.h
@@ -42,10 +42,10 @@ extern "C" {
typedef struct {
Objects_Control Object;
void *starting_address; /* physical address */
- unsigned32 length; /* in bytes */
- unsigned32 buffer_size; /* in bytes */
+ uint32_t length; /* in bytes */
+ uint32_t buffer_size; /* in bytes */
rtems_attribute attribute_set; /* attributes */
- unsigned32 number_of_used_blocks; /* or allocated buffers */
+ uint32_t number_of_used_blocks; /* or allocated buffers */
Chain_Control Memory; /* buffer chain */
} Partition_Control;
@@ -65,7 +65,7 @@ RTEMS_EXTERN Objects_Information _Partition_Information;
*/
void _Partition_Manager_initialization(
- unsigned32 maximum_partitions
+ uint32_t maximum_partitions
);
/*
@@ -85,8 +85,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
);
@@ -107,7 +107,7 @@ rtems_status_code rtems_partition_create(
rtems_status_code rtems_partition_ident(
rtems_name name,
- unsigned32 node,
+ uint32_t node,
Objects_Id *id
);