Electric Fence
Electric Fence (eFence) is a debugger that uses virtual memory
hardware
to detect illegal memory accesses. It can detect two common programming
bugs: software that overruns or underruns the boundaries of a malloc()
memory allocation, and software that touches a memory allocation that
has been released by free().
Unlike other malloc() debuggers, Electric Fence will detect
read accesses as well as writes, and it will stop and pinpoint the
exact instruction that causes an error. It is not
as thorough as Purify, however.
In order to debug a program it needs to be linked with
Electric Fence's library or dynamic linking needs to be used.
eFence triggers a program crash when the memory error occurs,
so a debugger can be used to inspect the code that caused the error.
By combining Electric Fence with gdb, you can track down
exactly what line tried to access the protected memory.
Electric Fence 2.1.14
|
|
Price
Free to download
Size
29.3KB
License
GNU GPL
Developer
Burce Perens
Website
perens.com/FreeSoftware/
System Requirements
Linux kernel 1.1.83 or greater
gdb
Support
Sites:
Selected
Reviews:
osreviews.net
|
Return
to Debuggers Home Page
Last Updated Wednesday, February 08 2012 @ 02:47 PM EST |