summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/inline
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/inline')
-rw-r--r--cpukit/rtems/inline/rtems/rtems/part.inl6
-rw-r--r--cpukit/rtems/inline/rtems/rtems/region.inl2
2 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/rtems/inline/rtems/rtems/part.inl b/cpukit/rtems/inline/rtems/rtems/part.inl
index 4ee2b8a42d..009a946401 100644
--- a/cpukit/rtems/inline/rtems/rtems/part.inl
+++ b/cpukit/rtems/inline/rtems/rtems/part.inl
@@ -66,9 +66,9 @@ RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_on_boundary (
Partition_Control *the_partition
)
{
- unsigned32 offset;
+ uint32_t offset;
- offset = (unsigned32) _Addresses_Subtract(
+ offset = (uint32_t ) _Addresses_Subtract(
the_buffer,
the_partition->starting_address
);
@@ -115,7 +115,7 @@ RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_valid (
*/
RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_size_aligned (
- unsigned32 buffer_size
+ uint32_t buffer_size
)
{
return ((buffer_size % CPU_PARTITION_ALIGNMENT) == 0);
diff --git a/cpukit/rtems/inline/rtems/rtems/region.inl b/cpukit/rtems/inline/rtems/rtems/region.inl
index 86a9776c2b..721d89c110 100644
--- a/cpukit/rtems/inline/rtems/rtems/region.inl
+++ b/cpukit/rtems/inline/rtems/rtems/region.inl
@@ -83,7 +83,7 @@ RTEMS_INLINE_ROUTINE Region_Control *_Region_Get (
RTEMS_INLINE_ROUTINE void *_Region_Allocate_segment (
Region_Control *the_region,
- unsigned32 size
+ uint32_t size
)
{
return _Heap_Allocate( &the_region->Memory, size );