summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapfree.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-05-24 02:44:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-05-24 02:44:58 +0000
commitdacdda304b8a7a2a10bc03ae36b1d75b728ba149 (patch)
treeb709b10d06bb4303fcf2f08511ca096ea2d5a0aa /cpukit/score/src/heapfree.c
parent2011-05-23 Jennifer Averett <Jennifer.Averett@OARcorp.com> (diff)
downloadrtems-dacdda304b8a7a2a10bc03ae36b1d75b728ba149.tar.bz2
Remove white-spaces.
Diffstat (limited to 'cpukit/score/src/heapfree.c')
-rw-r--r--cpukit/score/src/heapfree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/heapfree.c b/cpukit/score/src/heapfree.c
index d7ed523a3c..7217f1e991 100644
--- a/cpukit/score/src/heapfree.c
+++ b/cpukit/score/src/heapfree.c
@@ -36,7 +36,7 @@
_Heap_Alloc_area_of_block( block );
uintptr_t *const pattern_end = (uintptr_t *)
((uintptr_t) block + _Heap_Block_size( block ) + HEAP_ALLOC_BONUS);
- uintptr_t const delayed_free_block_count =
+ uintptr_t const delayed_free_block_count =
heap->Protection.delayed_free_block_count;
uintptr_t *current = NULL;
@@ -45,7 +45,7 @@
if ( delayed_free_block_count > 0 ) {
Heap_Block *const last = heap->Protection.last_delayed_free_block;
-
+
last->Protection_begin.next_delayed_free_block = block;
} else {
heap->Protection.first_delayed_free_block = block;
@@ -123,10 +123,10 @@ bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr )
if ( alloc_begin_ptr == NULL ) {
return true;
}
-
+
alloc_begin = (uintptr_t) alloc_begin_ptr;
block = _Heap_Block_of_alloc_area( alloc_begin, heap->page_size );
-
+
if ( !_Heap_Is_block_in_heap( heap, block ) ) {
return false;
}