summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/heap.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-11 20:56:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-11 20:56:10 +0000
commit55d7626db75b1b5323aa5ba16b3cbc0a985462fe (patch)
treec4268b9ad2466b12170205743fd97d425da18e8a /cpukit/score/include/rtems/score/heap.h
parent2007-07-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-55d7626db75b1b5323aa5ba16b3cbc0a985462fe.tar.bz2
2007-07-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* 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.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/heap.h2
1 files changed, 1 insertions, 1 deletions
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)