blob: e3c6932cfc59591f8e051292b295297e771ac535 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Keep in sync with definition in quarantine.c.
export QUARANTINE_SIZE=8192
if [ "x${enable_fill}" = "x1" ] ; then
export MALLOC_CONF="abort:false,junk:true,redzone:true,quarantine:${QUARANTINE_SIZE}"
fi
|