Sources Bugzilla – Bug 6640
Auto insertion/deletion of watchpoints for heap variables
Last modified: 2008-06-12 15:23:37 UTC
These are variables dynamically created/deleted using new/delete operators in C++ and malloc/free in C. For C++, they can be watched by inserting watchpoints at the object's constructor call (which new calls) and disabled at destructor call (which delete calls). For C, ?