Watch on condition

Hello everyone ,

-> I am new to WinDbg , what is the command that can be used to suspend when a particular variable is accessed .
->In gdb watch a>2 , would suspend the execution if a>2 , is there some provision in which i set a watch point for a particular condition on a variable or a set of variables ?

TIA,
Venkatesh.D.N

Search ‘condition breakpoints’ in your WinDbg help doc can give you more
help.
In my experience, it will slow down system because system will check
your breakpoint each time and send response to WinDBG even WinDBG won’t
break system when condition isn’t happen.

Thanks
Wayne