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?