I have a DX9 application that runs on an embedded Windows XP box. When leaving it automated overnight for soak testing it crashes after about six to eight hours. On our dev. machines (Win 7) we can't seem to reproduce this issue. I'm also fairly certain it's not a memory leak.
- If we run the same application in Debug on the embedded machines, it doesn't crash.
- If we place a
__try/__except
around the main loop update on the embedded machines, it doesn't crash.
I know in Debug, there is some additional byte padding around the local stack which may be "hiding" a local array access out of bounds, or some sort of uninitialized variable is sneaking through.
So I have two questions:
- Does
__try/__except
behave similar to debug, even when run in release? - What kind of things should I be scanning the code for if we have a crash in Release mode, but not in Debug mode?
If you're using
__try{ } __except()
you shouldn't.Those and C++ code don't mix well. (for instance, you can't have C++ objects on the stack of a function wrapped with those. You should use C++
try {} catch() {}
if you usecatch(...)
(with ellipsis) it does basically the same as__except()
both
try.. catch
and__try .. __except
behave the same in debug and release.If you suspect that your problem is an unexpected exception you should read about all of the following:
Using one of the first two would probably allow you to pinpoint your problem pretty quickly. The rest are there if you want absolute control for all error cases possible in your process.
Specifically, with
SetUnhandledExceptionFilter()
you can set up a function filter which logs the address of the code which caused the exception. You can then use your debugger to pin point that code. Using the DbgHelp library and with the information given to the filter function you can write some code which prints out a full stack trace of the crash, including symbols and line numbers.Make sure you set up your build configuration to emit debug symbols for release builds as well. They can only help and don't do anything to slow your application (but maybe make it bigger)