| 8 | { |
| 9 | |
| 10 | DumpHandler::DumpHandler( void ) |
| 11 | { |
| 12 | memset( &_ExceptionInfo, 0x00, sizeof( _ExceptionInfo ) ); |
| 13 | |
| 14 | // Create new thread to ensure dump creation in case of stack overflow exception |
| 15 | _hWatchThd = CreateThread( NULL, 0, &DumpHandler::WatchdogProc, this, 0, NULL ); |
| 16 | } |
| 17 | |
| 18 | DumpHandler::~DumpHandler( void ) |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected