Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 23, 2011, 3:13:31 PM (12 years ago)
Author:
fmauro
Message:

asteroidBelt function added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/environment3/src/libraries/util/SignalHandler.cc

    r8919 r8946  
    7070
    7171      catchSignal( SIGSEGV );
    72 //      catchSignal( SIGABRT );
     72//      catchSignal( SIGABRT );  // CEGUI nasty bugfix
    7373      catchSignal( SIGILL );
    7474    }
     
    127127      if( SignalHandler::singletonPtr_s == 0 )
    128128      {
    129         orxout(user_error) << "Received signal(sigHandler already destroyed) " << sigName.c_str() << endl << "Can't write backtrace because SignalHandler is already destroyed" << endl;
     129        orxout(user_error) << "Received signal " << sigName.c_str() << endl << "Can't write backtrace because SignalHandler is already destroyed" << endl;
    130130        exit(EXIT_FAILURE);
    131131      }
     
    137137
    138138
    139       orxout(user_error) << "Received signal(second error) " << sigName.c_str() << endl << "Try to write backtrace to file orxonox_crash.log" << endl;
     139      orxout(user_error) << "Received signal " << sigName.c_str() << endl << "Try to write backtrace to file orxonox_crash.log" << endl;
    140140
    141141     
     
    675675
    676676    /// Returns a description of the given exception.
    677     // Based on code from Dr. Mingw by José Fonseca
     677    // Based on code from Dr. Mingw by Jos\E9 Fonseca
    678678    /* static */ std::string SignalHandler::getExceptionType(PEXCEPTION_POINTERS pExceptionInfo)
    679679    {
     
    745745
    746746    /// Retrieves the base address of the module that contains the specified address.
    747     // Code from Dr. Mingw by José Fonseca
     747    // Code from Dr. Mingw by Jos\E9 Fonseca
    748748    /* static */ DWORD SignalHandler::getModuleBase(DWORD dwAddress)
    749749    {
Note: See TracChangeset for help on using the changeset viewer.