From 55d7626db75b1b5323aa5ba16b3cbc0a985462fe Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 11 Jul 2007 20:56:10 +0000 Subject: 2007-07-11 Joel Sherrill * libcsupport/src/malloc.c: Clean up Malloc debug code. * score/include/rtems/score/heap.h: Spacing. * score/inline/rtems/score/thread.inl: * score/src/heapfree.c. Clean up and add explicit check of the address being freed actually being in the heap. * score/src/heapwalk.c: Switch to printk and do not call abort. --- cpukit/score/include/rtems/score/heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 b5a5a66779..4c5ecfb58f 100644 --- a/cpukit/score/include/rtems/score/heap.h +++ b/cpukit/score/include/rtems/score/heap.h @@ -497,7 +497,7 @@ extern uint32_t _Heap_Block_allocate( #define _HAssert(cond_) \ do { \ - if(the_heap->stats.instance && !(cond_)) \ + if (the_heap->stats.instance && !(cond_)) \ __assert(__FILE__, __LINE__, #cond_); \ } while(0) -- cgit v1.2.3