vote up 1 vote down star

I can detect when a variable changes, but it changes so often that its no use - what I want is to detect the moment that a variable becomes zero.

Thanks,

flag

3 Answers

vote up 2 vote down check

That's not possible in Visual Studio. Visual Studio supports a number of debugging features in that particular area but I don't think you can combine them into a feature to get what you want

  • Data Changing Breakpoints: break when a value changes (only supported in native C++)
  • Conditionally breakpoints: break when the IP crosses the breakpoint and a particular condition is satisfied.

What you could do though is wrap all writes to your variable into a setter function. Then use a conditional breakpoint to break when the value changes to 0. I think this is the closest you're going to get to the feature you want.

link|flag
Thanks very much.. By the way, what does IP stand for? – Mick Sep 11 at 15:50
IP = Instruction Pointer. Essentially the line of code currently executing. – JaredPar Sep 11 at 15:52
vote up 1 vote down

You have to use one of these debuggers

1 - http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx

2 - The Good Old SoftICE, if you can find it anywhere

3 - http://www.sysersoft.com/updatelog.html

Also check new version OllyDbg (it says it supports hardware breakpoints)

link|flag
Syser Win32 Debugger seems to have hardware breakpoints, I did not try but it is free... – Malkocoglu Sep 11 at 18:19
Is SoftICE free? – Mick Sep 21 at 8:27
It is not free. It is a discontinued product. You should ask Compuware about it... – Malkocoglu Sep 22 at 19:48
vote up 0 vote down

You need to Specify a Breakpoint Condition.

MS Help and Support has a good walk through with sample code and different kinds of breakpoints.

link|flag
Breakpoint conditions though only fire when the IP crosses the break point location. It sounds like the OP wants a data break point with conditional checking functionality. A vanilla breakpoint condition won't satisfy this. – JaredPar Sep 11 at 15:42
1  
The breakpoint(s) would have to be everywhere that the data can change. You're right that there's really no way to fire a global event when a variable reaches a certain value (not that I know of). – Bill the Lizard Sep 11 at 15:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.