diff options
-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 |