22 lines
552 B
Plaintext
22 lines
552 B
Plaintext
|
$OpenBSD: patch-src_SDL_fatal_c,v 1.3 2006/10/19 00:26:34 pvalchev Exp $
|
||
|
--- src/SDL_fatal.c.orig Tue Nov 12 23:20:24 2002
|
||
|
+++ src/SDL_fatal.c Tue Nov 12 23:22:35 2002
|
||
|
@@ -72,9 +72,6 @@ static void SDL_Parachute(int sig)
|
||
|
signal(sig, SIG_DFL);
|
||
|
print_msg("Fatal signal: ");
|
||
|
switch (sig) {
|
||
|
- case SIGSEGV:
|
||
|
- print_msg("Segmentation Fault");
|
||
|
- break;
|
||
|
#ifdef SIGBUS
|
||
|
#if SIGBUS != SIGSEGV
|
||
|
case SIGBUS:
|
||
|
@@ -109,7 +106,6 @@ static void SDL_Parachute(int sig)
|
||
|
}
|
||
|
|
||
|
static int SDL_fatal_signals[] = {
|
||
|
- SIGSEGV,
|
||
|
#ifdef SIGBUS
|
||
|
SIGBUS,
|
||
|
#endif
|