aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2010-05-13 16:46:22 -0400
committerBill Nottingham <notting@redhat.com>2010-05-13 16:48:21 -0400
commit7151084cd44b79b6437da65cac2ab7fd878cae5e (patch)
tree90de32b3dc6318affd5c9bdec910c908f7fe0d32
parent3066bd7b8b1137bdb3a41a6b1e277f93e1eab7ac (diff)
downloadinitscripts-7151084cd44b79b6437da65cac2ab7fd878cae5e.tar
initscripts-7151084cd44b79b6437da65cac2ab7fd878cae5e.tar.gz
initscripts-7151084cd44b79b6437da65cac2ab7fd878cae5e.tar.bz2
initscripts-7151084cd44b79b6437da65cac2ab7fd878cae5e.tar.xz
initscripts-7151084cd44b79b6437da65cac2ab7fd878cae5e.zip
export debug variables. (#589378)
-rw-r--r--sysconfig/debug6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/debug b/sysconfig/debug
index f0c05aae..3a251fd4 100644
--- a/sysconfig/debug
+++ b/sysconfig/debug
@@ -4,10 +4,10 @@
# 0: silently ignore errors
# 1: print diagnostics on stderr when an error is detected
# 2: call abort when an error is detected
-MALLOC_CHECK_=1
+export MALLOC_CHECK_=1
# MALLOC_PERTURB_: initialize cleared memory to the specified value
-MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
+export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
# Perform extra sanity checking in the gslice allocator
-G_SLICE=debug-blocks
+export G_SLICE=debug-blocks