Bug 6640 - Auto insertion/deletion of watchpoints for heap variables
Summary: Auto insertion/deletion of watchpoints for heap variables
Status: NEW
Alias: None
Product: frysk
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Unassigned
URL:
Keywords:
Depends on:
Blocks: 1625 6622
  Show dependency treegraph
 
Reported: 2008-06-12 15:23 UTC by Teresa Thomas
Modified: 2008-06-12 15:23 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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, ?