aboutsummaryrefslogtreecommitdiff
path: root/src/lib/malloc.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2010-11-10 00:14:32 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2010-11-10 00:14:32 +0000
commita953f371ddc0cebf2b3b9d1eebeb857e0567c709 (patch)
treec2c95f65cd963b7c5eeaa9cf93f8eaa5056854d8 /src/lib/malloc.c
parentf228a6cf93f662c3d178198aa9f8ff4d129227b3 (diff)
Debugging facility improvements.
- Hook up malloc() debug code via CONFIG_DEBUG_MALLOC. Only show it in menuconfig if at least DEBUG or SPEW are selected as loglevel, as this code does additional printk(BIOS_DEBUG, ...) calls which would otherwise not be visible anyway. - Similarly, make DEBUG_CAR and REALMODE_DEBUG only visible if thr DEBUG or SPEW loglevel is selected. - Get rid of a custom "debug" macro, use printk() as usual. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6054 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/lib/malloc.c')
-rw-r--r--src/lib/malloc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/malloc.c b/src/lib/malloc.c
index 2ed23ad795..ac038ecd44 100644
--- a/src/lib/malloc.c
+++ b/src/lib/malloc.c
@@ -1,11 +1,12 @@
#include <stdlib.h>
#include <console/console.h>
-#if 0
-#define MALLOCDBG(x)
-#else
+#if CONFIG_DEBUG_MALLOC
#define MALLOCDBG(x...) printk(BIOS_SPEW, x)
+#else
+#define MALLOCDBG(x)
#endif
+
extern unsigned char _heap, _eheap;
static void *free_mem_ptr = &_heap; /* Start of heap */
static void *free_mem_end_ptr = &_eheap; /* End of heap */