wok-current diff electric-fence/description.txt @ rev 24703
updated ladspa and ladspa-dev (1.15 -> 1.17)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 14 11:12:41 2022 +0100 (2022-03-14) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/electric-fence/description.txt Mon Mar 14 11:12:41 2022 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +Electric Fence is a debugger that uses virtual memory hardware to detect illegal 1.5 +memory accesses. 1.6 +It can detect two common programming bugs: 1.7 +software that overruns or underruns the boundaries of a malloc() memory allocation, 1.8 +and software that touches a memory allocation that has been released by free(). 1.9 + 1.10 +Unlike other malloc() debuggers, Electric Fence will detect read accesses as well 1.11 +as writes, and it will stop and pinpoint the exact instruction that causes an error. 1.12 +It is not as thorough as Purify, however. 1.13 + 1.14 +In order to debug a program it needs to be linked with Electric Fence's library or 1.15 +dynamic linking needs to be used.