summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-08-25 14:30:01 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-08-25 14:30:01 +0000
commit1b5a0ecef7b983fbad6ce52af10c0683ed1989b6 (patch)
treed9000eea13b2a61b1e54bb91319a086f3bbd131c /cpukit/libcsupport/src/malloc.c
parent2010-08-25 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-1b5a0ecef7b983fbad6ce52af10c0683ed1989b6.tar.bz2
2010-08-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libcsupport/src/free.c, libcsupport/src/malloc.c, libcsupport/src/malloc_initialize.c: Remove heap walks in case RTEMS_DEBUG is defined.
Diffstat (limited to 'cpukit/libcsupport/src/malloc.c')
-rw-r--r--cpukit/libcsupport/src/malloc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/cpukit/libcsupport/src/malloc.c b/cpukit/libcsupport/src/malloc.c
index cf0fd158b4..6bb77a4630 100644
--- a/cpukit/libcsupport/src/malloc.c
+++ b/cpukit/libcsupport/src/malloc.c
@@ -49,13 +49,6 @@ void *malloc(
return NULL;
/*
- * Walk the heap and verify its integrity
- */
- #if defined(RTEMS_HEAP_DEBUG)
- _Protected_heap_Walk( RTEMS_Malloc_Heap, 0, false );
- #endif
-
- /*
* Try to give a segment in the current heap if there is not
* enough space then try to grow the heap.
* If this fails then return a NULL pointer.