aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-20 14:16:31 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-20 14:16:31 +0000
commit5a406510466943f9c70b88bd1a9398147e02e470 (patch)
tree145e0364289d65ff81f76d868f252e17e71a79b4 /Makefile
parent89de1e7930a752e0a444d30172ca508f58f02365 (diff)
downloadbusybox-5a406510466943f9c70b88bd1a9398147e02e470.tar.gz
Update dmalloc options per suggestion from Glenn
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8c83e7f33..19c28edf3 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,11 @@ DODEBUG = false
# which is an excellent public domain mem leak and malloc problem
# detector. To enable dmalloc, before running busybox you will
# want to first set up your environment.
-# eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
+# eg: `export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile`
+# The debug= value is generated using the following command
+# dmalloc -p log-stats -p log-non-free -p log-bad-space -p log-elapsed-time \
+# -p check-fence -p check-heap -p check-lists -p check-blank \
+# -p check-funcs -p realloc-copy -p allow-free-null
# Do not enable this for production builds...
DODMALLOC = false