From 59c44c6b954d4525d0d5215753a7927993769f0b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 11 Feb 2007 08:35:15 +0000 Subject: More size_t for heap-sizes. --- cpukit/score/include/rtems/score/heap.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/score/include/rtems/score/heap.h') diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/score/include/rtems/score/heap.h index 1b5c0577a0..b5a5a66779 100644 --- a/cpukit/score/include/rtems/score/heap.h +++ b/cpukit/score/include/rtems/score/heap.h @@ -263,7 +263,7 @@ typedef struct { uint32_t _Heap_Initialize( Heap_Control *the_heap, void *starting_address, - uint32_t size, + size_t size, uint32_t page_size ); @@ -316,8 +316,8 @@ void *_Heap_Allocate( */ void *_Heap_Allocate_aligned( Heap_Control *the_heap, - uint32_t size, - uint32_t alignment + size_t size, + uint32_t alignment ); /** @@ -365,7 +365,7 @@ boolean _Heap_Size_of_user_area( Heap_Resize_status _Heap_Resize_block( Heap_Control *the_heap, void *starting_address, - uint32_t size, + size_t size, uint32_t *old_mem_size, uint32_t *avail_mem_size ); -- cgit v1.2.3