What is _GetExceptDLLinfo?
I'm working on a Java project that calls a native Windows executable with a 开发者_JAVA技巧Java Process object. Sometimes I see an exception in the native code and the symbol _GetExceptDLLinfo
appears in the native stack trace. Is there some meaningful exception to capture and if so, how do I capture it?
_GetExceptDLLinfo
apparently can show up when the debugger fails to find the correct function name for an address. It will likely be followed by +0xCRAZYBIG
. Normally you'd expect to see something like +0000003a
which means the 59th byte of the _GetExceptDLLinfo
function.
精彩评论