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:47:05 -0400
commit3c3821575c39720ae449d9f20db54f3fa44afa25 (patch)
tree5c5a08deeb9f40a12eebc09a24b972311444e4fe
parentff6e3cc495693a77e817bc3f94a1fa8e5a8f9770 (diff)
downloadinitscripts-3c3821575c39720ae449d9f20db54f3fa44afa25.tar
initscripts-3c3821575c39720ae449d9f20db54f3fa44afa25.tar.gz
initscripts-3c3821575c39720ae449d9f20db54f3fa44afa25.tar.bz2
initscripts-3c3821575c39720ae449d9f20db54f3fa44afa25.tar.xz
initscripts-3c3821575c39720ae449d9f20db54f3fa44afa25.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