Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

An apparent problem with VS2010 is that a native debug-break (int 3) while native debugging is disabled will cause the app to apparently hang. I'm trying to work around this.

I have a callback that will redirect a debug-break to Diagnostics::Debugger::Break(), which works how we want. I just need to know when to do this redirection.

If someone is debugging with native enabled, then I want the int 3 to work as always. However if they have it disabled, I want to forward to the .NET break. It won't give useful information, because the break is intended for native code, but at least it will do something other than hang forever.

I can detect a managed debugger using Diagnostics::Debugger::IsAttached. How can I detect the native debugger? I thought that (the misleadingly-named) CheckRemoteDebuggerPresent() would do the trick, but it is returning true even when doing managed-only debugging. Same for IsDebuggerPresent().

How can I detect if a native debugger is attached to the current process?

share|improve this question
2  
Use IsDebuggerPresent(). – Hans Passant Feb 18 '12 at 2:39
As I said in my question, IsDebuggerPresent() returns true whether or not the native debugger is attached. – Scott Bilas Feb 21 '12 at 18:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.