summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
authorScott Griepentrog <sgriepentrog@digium.com>2015-03-17 22:03:37 +0000
committerScott Griepentrog <sgriepentrog@digium.com>2015-03-17 22:03:37 +0000
commitf25b2653293d0d96479d3d83795f40828f0b7bb7 (patch)
treee5d152dcafb84793b3682913e9a35a4b3098a11b /build_tools
parent62cf2a2c02076e14792e5ded90942bc2b1b86961 (diff)
core: Introduce chaos into memory allocations
Locate potential crashes by exercising seldom used code paths. This patch introduces a new define DEBUG_CHAOS, and mechanism to randomly return an error condition from functions that will seldom do so. Functions that handle the allocation of memory get the first treatment. Review: https://reviewboard.asterisk.org/r/4463/ ........ Merged revisions 433060 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@433063 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'build_tools')
-rw-r--r--build_tools/cflags.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/build_tools/cflags.xml b/build_tools/cflags.xml
index 082e8e63f..49a354767 100644
--- a/build_tools/cflags.xml
+++ b/build_tools/cflags.xml
@@ -79,6 +79,10 @@
<member name="MALLOC_DEBUG" displayname="Keep Track of Memory Allocations">
<support_level>core</support_level>
</member>
+ <member name="DEBUG_CHAOS" displayname="Randomly FAIL memory allocations or other operations">
+ <conflict>MALLOC_DEBUG</conflict>
+ <support_level>core</support_level>
+ </member>
<member name="BUSYDETECT_TONEONLY" displayname="Enable additional comparision of only the tone duration not the silence part">
<conflict>BUSYDETECT_COMPARE_TONE_AND_SILENCE</conflict>
<defaultenabled>no</defaultenabled>