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:46:59 -0400
commite0eac3be31a68b0eb657fe1c1e8da36849ade05b (patch)
tree2e3f7849c97e24e923113c0904719d6feaa88b68
parent2679e5006d40c7f99f933b1265b9487bec772fa0 (diff)
downloadinitscripts-e0eac3be31a68b0eb657fe1c1e8da36849ade05b.tar
initscripts-e0eac3be31a68b0eb657fe1c1e8da36849ade05b.tar.gz
initscripts-e0eac3be31a68b0eb657fe1c1e8da36849ade05b.tar.bz2
initscripts-e0eac3be31a68b0eb657fe1c1e8da36849ade05b.tar.xz
initscripts-e0eac3be31a68b0eb657fe1c1e8da36849ade05b.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