Skip to content

Latest commit

 

History

History
190 lines (164 loc) · 3.91 KB

SDL_fatal.c

File metadata and controls

190 lines (164 loc) · 3.91 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
26
27
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
Sep 29, 2005
Sep 29, 2005
28
29
30
31
#ifdef _WIN32_WCE
#define NO_SIGNAL_H
#endif
Apr 26, 2001
Apr 26, 2001
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* General fatal signal handling code for SDL */
#ifdef NO_SIGNAL_H
/* No signals on this platform, nothing to do.. */
void SDL_InstallParachute(void)
{
return;
}
void SDL_UninstallParachute(void)
{
return;
}
#else
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include "SDL.h"
#include "SDL_fatal.h"
Apr 26, 2001
Apr 26, 2001
58
59
60
61
#ifdef __CYGWIN__
#define DISABLE_STDIO
#endif
Apr 26, 2001
Apr 26, 2001
62
63
64
65
66
/* This installs some signal handlers for the more common fatal signals,
so that if the programmer is lazy, the app doesn't die so horribly if
the program crashes.
*/
Apr 26, 2001
Apr 26, 2001
67
68
69
70
71
72
73
static void print_msg(const char *text)
{
#ifndef DISABLE_STDIO
fprintf(stderr, "%s", text);
#endif
}
Apr 26, 2001
Apr 26, 2001
74
75
76
static void SDL_Parachute(int sig)
{
signal(sig, SIG_DFL);
Apr 26, 2001
Apr 26, 2001
77
print_msg("Fatal signal: ");
Apr 26, 2001
Apr 26, 2001
78
79
switch (sig) {
case SIGSEGV:
Apr 26, 2001
Apr 26, 2001
80
print_msg("Segmentation Fault");
Apr 26, 2001
Apr 26, 2001
81
82
83
84
break;
#ifdef SIGBUS
#if SIGBUS != SIGSEGV
case SIGBUS:
Apr 26, 2001
Apr 26, 2001
85
print_msg("Bus Error");
Apr 26, 2001
Apr 26, 2001
86
87
88
89
90
break;
#endif
#endif /* SIGBUS */
#ifdef SIGFPE
case SIGFPE:
Apr 26, 2001
Apr 26, 2001
91
print_msg("Floating Point Exception");
Apr 26, 2001
Apr 26, 2001
92
93
94
95
break;
#endif /* SIGFPE */
#ifdef SIGQUIT
case SIGQUIT:
Apr 26, 2001
Apr 26, 2001
96
print_msg("Keyboard Quit");
Apr 26, 2001
Apr 26, 2001
97
98
99
100
break;
#endif /* SIGQUIT */
#ifdef SIGPIPE
case SIGPIPE:
Apr 26, 2001
Apr 26, 2001
101
print_msg("Broken Pipe");
Apr 26, 2001
Apr 26, 2001
102
103
104
break;
#endif /* SIGPIPE */
default:
Apr 26, 2001
Apr 26, 2001
105
#ifndef DISABLE_STDIO
Apr 26, 2001
Apr 26, 2001
106
fprintf(stderr, "# %d", sig);
Apr 26, 2001
Apr 26, 2001
107
#endif
Apr 26, 2001
Apr 26, 2001
108
109
break;
}
Apr 26, 2001
Apr 26, 2001
110
print_msg(" (SDL Parachute Deployed)\n");
Apr 26, 2001
Apr 26, 2001
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
SDL_Quit();
exit(-sig);
}
static int SDL_fatal_signals[] = {
SIGSEGV,
#ifdef SIGBUS
SIGBUS,
#endif
#ifdef SIGFPE
SIGFPE,
#endif
#ifdef SIGQUIT
SIGQUIT,
#endif
0
};
void SDL_InstallParachute(void)
{
Feb 12, 2004
Feb 12, 2004
131
/* Set a handler for any fatal signal not already handled */
Apr 26, 2001
Apr 26, 2001
132
int i;
Feb 12, 2004
Feb 12, 2004
133
134
#ifdef HAVE_SIGACTION
struct sigaction action;
Apr 26, 2001
Apr 26, 2001
135
136
for ( i=0; SDL_fatal_signals[i]; ++i ) {
Feb 12, 2004
Feb 12, 2004
137
138
139
140
sigaction(SDL_fatal_signals[i], NULL, &action);
if ( action.sa_handler == SIG_DFL ) {
action.sa_handler = SDL_Parachute;
sigaction(SDL_fatal_signals[i], &action, NULL);
Apr 26, 2001
Apr 26, 2001
141
142
143
144
}
}
#ifdef SIGALRM
/* Set SIGALRM to be ignored -- necessary on Solaris */
Feb 12, 2004
Feb 12, 2004
145
146
sigaction(SIGALRM, NULL, &action);
if ( action.sa_handler == SIG_DFL ) {
Apr 26, 2001
Apr 26, 2001
147
action.sa_handler = SIG_IGN;
Feb 26, 2004
Feb 26, 2004
148
sigaction(SIGALRM, &action, NULL);
Feb 12, 2004
Feb 12, 2004
149
150
151
152
}
#endif
#else
void (*ohandler)(int);
Apr 26, 2001
Apr 26, 2001
153
Feb 12, 2004
Feb 12, 2004
154
155
156
157
for ( i=0; SDL_fatal_signals[i]; ++i ) {
ohandler = signal(SDL_fatal_signals[i], SDL_Parachute);
if ( ohandler != SIG_DFL ) {
signal(SDL_fatal_signals[i], ohandler);
Apr 26, 2001
Apr 26, 2001
158
159
}
}
Feb 12, 2004
Feb 12, 2004
160
#endif /* HAVE_SIGACTION */
Apr 26, 2001
Apr 26, 2001
161
162
163
164
165
return;
}
void SDL_UninstallParachute(void)
{
Feb 12, 2004
Feb 12, 2004
166
/* Remove a handler for any fatal signal handled */
Apr 26, 2001
Apr 26, 2001
167
int i;
Feb 12, 2004
Feb 12, 2004
168
169
170
171
172
173
174
175
176
177
178
#ifdef HAVE_SIGACTION
struct sigaction action;
for ( i=0; SDL_fatal_signals[i]; ++i ) {
sigaction(SDL_fatal_signals[i], NULL, &action);
if ( action.sa_handler == SDL_Parachute ) {
action.sa_handler = SIG_DFL;
sigaction(SDL_fatal_signals[i], &action, NULL);
}
}
#else
Apr 26, 2001
Apr 26, 2001
179
180
181
182
183
184
185
186
void (*ohandler)(int);
for ( i=0; SDL_fatal_signals[i]; ++i ) {
ohandler = signal(SDL_fatal_signals[i], SIG_DFL);
if ( ohandler != SDL_Parachute ) {
signal(SDL_fatal_signals[i], ohandler);
}
}
Feb 12, 2004
Feb 12, 2004
187
#endif /* HAVE_SIGACTION */
Apr 26, 2001
Apr 26, 2001
188
189
190
}
#endif /* NO_SIGNAL_H */