Changeset 8919 for code/branches/environment3/src/libraries/util
- Timestamp:
- Nov 2, 2011, 3:43:42 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/environment3/src/libraries/util/SignalHandler.cc
r8858 r8919 70 70 71 71 catchSignal( SIGSEGV ); 72 catchSignal( SIGABRT );72 // catchSignal( SIGABRT ); 73 73 catchSignal( SIGILL ); 74 74 } … … 127 127 if( SignalHandler::singletonPtr_s == 0 ) 128 128 { 129 orxout(user_error) << "Received signal " << sigName.c_str() << endl << "Can't write backtrace because SignalHandler is already destroyed" << endl;129 orxout(user_error) << "Received signal(sigHandler already destroyed) " << sigName.c_str() << endl << "Can't write backtrace because SignalHandler is already destroyed" << endl; 130 130 exit(EXIT_FAILURE); 131 131 } … … 137 137 138 138 139 orxout(user_error) << "Received signal " << sigName.c_str() << endl << "Try to write backtrace to file orxonox_crash.log" << endl;139 orxout(user_error) << "Received signal(second error) " << sigName.c_str() << endl << "Try to write backtrace to file orxonox_crash.log" << endl; 140 140 141 141
Note: See TracChangeset
for help on using the changeset viewer.