aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llappviewerwin32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llappviewerwin32.cpp')
-rw-r--r--linden/indra/newview/llappviewerwin32.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/newview/llappviewerwin32.cpp b/linden/indra/newview/llappviewerwin32.cpp
index bf02087..2a6fd60 100644
--- a/linden/indra/newview/llappviewerwin32.cpp
+++ b/linden/indra/newview/llappviewerwin32.cpp
@@ -85,6 +85,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
85 85
86 // Translate the signals/exceptions into cross-platform stuff 86 // Translate the signals/exceptions into cross-platform stuff
87 // Windows implementation 87 // Windows implementation
88 _tprintf( _T("Entering Windows Exception Handler...\n") );
88 llinfos << "Entering Windows Exception Handler..." << llendl; 89 llinfos << "Entering Windows Exception Handler..." << llendl;
89 90
90 // Make sure the user sees something to indicate that the app crashed. 91 // Make sure the user sees something to indicate that the app crashed.
@@ -92,6 +93,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
92 93
93 if (LLApp::isError()) 94 if (LLApp::isError())
94 { 95 {
96 _tprintf( _T("Got another fatal signal while in the error handler, die now!\n") );
95 llwarns << "Got another fatal signal while in the error handler, die now!" << llendl; 97 llwarns << "Got another fatal signal while in the error handler, die now!" << llendl;
96 98
97 retval = EXCEPTION_EXECUTE_HANDLER; 99 retval = EXCEPTION_EXECUTE_HANDLER;
@@ -122,6 +124,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
122 return retval; 124 return retval;
123} 125}
124 126
127//#define DEBUGGING_SEH_FILTER 1
125#if DEBUGGING_SEH_FILTER 128#if DEBUGGING_SEH_FILTER
126# define WINMAIN DebuggingWinMain 129# define WINMAIN DebuggingWinMain
127#else 130#else