diff options
author | Bill Nottingham <notting@redhat.com> | 2010-05-13 16:46:22 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2010-05-13 16:46:22 -0400 |
commit | deb0df0124fbe9b645755a0a44c7cb8044f24719 (patch) | |
tree | cad16c25d580b91c93317cc55390a6a923bcaac2 /sysconfig | |
parent | c27b7f0978cc3bf809667d7cad1d75b8d2e55134 (diff) | |
download | initscripts-deb0df0124fbe9b645755a0a44c7cb8044f24719.tar initscripts-deb0df0124fbe9b645755a0a44c7cb8044f24719.tar.gz initscripts-deb0df0124fbe9b645755a0a44c7cb8044f24719.tar.bz2 initscripts-deb0df0124fbe9b645755a0a44c7cb8044f24719.tar.xz initscripts-deb0df0124fbe9b645755a0a44c7cb8044f24719.zip |
export debug variables. (#589378)
Diffstat (limited to 'sysconfig')
-rw-r--r-- | sysconfig/debug | 6 |
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 |