Bug 6640

Summary: Auto insertion/deletion of watchpoints for heap variables
Product: frysk Reporter: Teresa Thomas <tthomas>
Component: generalAssignee: Unassigned <frysk-bugzilla>
Status: NEW ---    
Severity: normal    
Priority: P2    
Version: unspecified   
Target Milestone: ---   
Host: Target:
Build: Last reconfirmed:
Bug Depends on:    
Bug Blocks: 1625, 6622    

Description Teresa Thomas 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, ?