Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-debug-dev] special breakpoint and event

Hi, all, I got a queston for you guys.

I want to be able to set some specical breakpoints
when debugging c++ program. Besides the normal info
regular line breakpoints have, the special breakpoints
will contain some data which are set by users when
they make the special breakpoints. So suppose I have a
four line program, I set my special breakpoint at line
2 and set regular breakpoint at line 3. When regular
breakpoint is hit, the program will suspend and then a
lot of views like variable view will get updated. But
I would like my special breakpoint working as follows:
after my special breakpoint at line2  is hit,the
program suspend, but the debug views of cdt like
variable view willnot get updated, and only the
special variable view I make get updated(which means I
have to make a special event which only my variable
view can take,right?),then the program automatically
resume. Then regular breakpoint at line 3 get hit,the
program suspend and waiting user's choose(resume or
step over), the debug views of cdt get updated , but
my special variable view I made will not get updated. 

So based on the above description, I want a special
line breakpoint and a special event which only my
variable view can recognize but other not.But I'm a
CDT newbie and in short time I cannot figure it out.
So may someone can kindly point out the classes I
should use or extend and how to implement the whole
thing I want.

Thanks in advance and have a nice day

Bob


	
		
__________________________________
Do you Yahoo!?
Yahoo! Domains – Claim yours for only $14.70/year
http://smallbusiness.promotions.yahoo.com/offer 


Back to the top