From 0afdadf6f0cee3d9d5aa66974b86f3c5e9ebfa77 Mon Sep 17 00:00:00 2001 From: "Howard M. Harte" Date: Wed, 7 Oct 2015 16:57:23 -0700 Subject: [PATCH] efence: Add electric fence to default manifest. Electric Fence is a different kind of malloc() debugger. It uses the virtual memory hardware of your system to detect when software overruns the boundaries of a malloc() buffer. It will also detect any accesses of memory that has been released by free(). Because it uses the VM hardware for detection, Electric Fence stops your program on the first instruction that causes a bounds violation. It's then trivial to use a debugger to display the offending statement. Change-Id: I49557db5c57aa897d965f0a47b411c3d756f5880 --- default.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/default.xml b/default.xml index 71e13d6d..e9ab489b 100644 --- a/default.xml +++ b/default.xml @@ -75,6 +75,7 @@ +