From 7c411bda5ba29eb8fb5be3841626a485c0d650cb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 14 Sep 2009 14:48:38 +0000 Subject: 2009-09-14 Sebastian Huber * score/src/wkspace.c: Removed work space area consistency checks. * libblock/include/rtems/ide_part_table.h: Functions are now deprecated. * libcsupport/include/rtems/libcsupport.h, libcsupport/src/calloc.c, libcsupport/src/malloc_boundary.c, libcsupport/src/malloc_initialize.c, libcsupport/src/malloc_report_statistics_plugin.c, libcsupport/src/malloc_statistics_helpers.c, libcsupport/src/malloc_walk.c, libcsupport/src/realloc.c, rtems/inline/rtems/rtems/region.inl: Update for heap API changes. 2009-09-14 Christian Mauderer * libcsupport/src/vprintk.c: Fixed warnings. Print nothing in case the pointer to the string is NULL. --- cpukit/rtems/inline/rtems/rtems/region.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/rtems/inline/rtems/rtems/region.inl') diff --git a/cpukit/rtems/inline/rtems/rtems/region.inl b/cpukit/rtems/inline/rtems/rtems/region.inl index be651dc10a..e70891378d 100644 --- a/cpukit/rtems/inline/rtems/rtems/region.inl +++ b/cpukit/rtems/inline/rtems/rtems/region.inl @@ -78,10 +78,10 @@ RTEMS_INLINE_ROUTINE Region_Control *_Region_Get ( */ RTEMS_INLINE_ROUTINE void *_Region_Allocate_segment ( Region_Control *the_region, - intptr_t size + uintptr_t size ) { - return _Heap_Allocate( &the_region->Memory, size ); + return _Heap_Allocate( &the_region->Memory, size ); } /** -- cgit v1.2.3