/* Copyright (C) 2001-2004 Stephane Magnenat & Luc-Olivier de Charrière for any question or comment contact us at or This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #if (!defined (__GNUC__)) && (!defined (WIN32)) #include #include #include #include #include #include "Header.h" /* Obtain a backtrace and print it to `stdout'. */ void printTrace (void) { void *array[20]; size_t size; char **strings; size_t i; size = backtrace (array, 20); strings = backtrace_symbols (array, size); printf ("Obtained %d stack frames :\n", (unsigned)size); for (i = 0; i < size; i++) printf ("%s\n", strings[i]); free (strings); } static void termination_handler (int sig) { signal(sig, SIG_DFL); fprintf(stdout, "DBG : Oooops : caught fatal signal : "); switch (sig) { case SIGSEGV: fprintf(stdout, "Segmentation Fault"); break; case SIGBUS: fprintf(stdout, "Bus Error"); break; case SIGFPE: fprintf(stdout, "Floating Point Exception"); break; case SIGQUIT: fprintf(stdout, "Keyboard Quit"); break; case SIGPIPE: fprintf(stdout, "Broken Pipe"); break; default: fprintf(stdout, "# %d", sig); break; } fprintf(stdout, "\n"); fprintf(stdout, "Now cleaning static stuff :\n"); SDL_Quit(); exit(-sig); } static int fatal_signals[] = { SIGSEGV, SIGBUS, SIGFPE, SIGQUIT, SIGPIPE, 0 }; void installCrashHandler(void) { mtrace (); printf("DBG : Signal support enabled\n"); { for (int i=0; fatal_signals[i]; ++i ) signal(fatal_signals[i], termination_handler); } } #else #include void installCrashHandler(void) { printf("DBG : No crash support on this plateform\n"); } void printTrace(void) { printf("DBG : No stack trace support\n"); } #endif