Skip to content

Latest commit

 

History

History
135 lines (112 loc) · 3.02 KB

SDL_fatal.c

File metadata and controls

135 lines (112 loc) · 3.02 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
*/
/* General fatal signal handling code for SDL */
Feb 6, 2006
Feb 6, 2006
25
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
26
Feb 6, 2006
Feb 6, 2006
27
#ifdef HAVE_SIGNAL_H
Apr 26, 2001
Apr 26, 2001
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <signal.h>
#include "SDL.h"
#include "SDL_fatal.h"
/* 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.
*/
static void SDL_Parachute(int sig)
{
signal(sig, SIG_DFL);
SDL_Quit();
Feb 6, 2006
Feb 6, 2006
43
raise(sig);
Apr 26, 2001
Apr 26, 2001
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
}
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
62
/* Set a handler for any fatal signal not already handled */
Apr 26, 2001
Apr 26, 2001
63
int i;
Feb 12, 2004
Feb 12, 2004
64
65
#ifdef HAVE_SIGACTION
struct sigaction action;
Apr 26, 2001
Apr 26, 2001
66
67
for ( i=0; SDL_fatal_signals[i]; ++i ) {
Feb 12, 2004
Feb 12, 2004
68
69
70
71
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
72
73
74
75
}
}
#ifdef SIGALRM
/* Set SIGALRM to be ignored -- necessary on Solaris */
Feb 12, 2004
Feb 12, 2004
76
77
sigaction(SIGALRM, NULL, &action);
if ( action.sa_handler == SIG_DFL ) {
Apr 26, 2001
Apr 26, 2001
78
action.sa_handler = SIG_IGN;
Feb 26, 2004
Feb 26, 2004
79
sigaction(SIGALRM, &action, NULL);
Feb 12, 2004
Feb 12, 2004
80
81
82
83
}
#endif
#else
void (*ohandler)(int);
Apr 26, 2001
Apr 26, 2001
84
Feb 12, 2004
Feb 12, 2004
85
86
87
88
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
89
90
}
}
Feb 12, 2004
Feb 12, 2004
91
#endif /* HAVE_SIGACTION */
Apr 26, 2001
Apr 26, 2001
92
93
94
95
96
return;
}
void SDL_UninstallParachute(void)
{
Feb 12, 2004
Feb 12, 2004
97
/* Remove a handler for any fatal signal handled */
Apr 26, 2001
Apr 26, 2001
98
int i;
Feb 12, 2004
Feb 12, 2004
99
100
101
102
103
104
105
106
107
108
109
#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
110
111
112
113
114
115
116
117
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
118
#endif /* HAVE_SIGACTION */
Apr 26, 2001
Apr 26, 2001
119
120
}
Feb 6, 2006
Feb 6, 2006
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#else
/* No signals on this platform, nothing to do.. */
void SDL_InstallParachute(void)
{
return;
}
void SDL_UninstallParachute(void)
{
return;
}
#endif /* HAVE_SIGNAL_H */