Skip to content

Latest commit

 

History

History
124 lines (108 loc) · 3.18 KB

SDL_quit.c

File metadata and controls

124 lines (108 loc) · 3.18 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 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
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
/* General quit handling code for SDL */
Feb 6, 2006
Feb 6, 2006
26
#ifdef HAVE_SIGNAL_H
Apr 26, 2001
Apr 26, 2001
27
28
29
30
31
32
33
#include <signal.h>
#endif
#include "SDL_events.h"
#include "SDL_events_c.h"
Feb 6, 2006
Feb 6, 2006
34
#ifdef HAVE_SIGNAL_H
Apr 26, 2001
Apr 26, 2001
35
36
37
38
39
40
41
42
static void SDL_HandleSIG(int sig)
{
/* Reset the signal handler */
signal(sig, SDL_HandleSIG);
/* Signal a quit interrupt */
SDL_PrivateQuit();
}
Feb 6, 2006
Feb 6, 2006
43
#endif /* HAVE_SIGNAL_H */
Apr 26, 2001
Apr 26, 2001
44
45
46
47
/* Public functions */
int SDL_QuitInit(void)
{
Mar 16, 2011
Mar 16, 2011
48
49
50
#ifdef HAVE_SIGACTION
struct sigaction action;
sigaction(SIGINT, NULL, &action);
Jul 14, 2011
Jul 14, 2011
51
# ifdef HAVE_SA_SIGACTION
Mar 21, 2011
Mar 21, 2011
52
if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) {
Jul 14, 2011
Jul 14, 2011
53
54
55
# else
if ( action.sa_handler == SIG_DFL ) {
# endif
Mar 16, 2011
Mar 16, 2011
56
57
58
59
action.sa_handler = SDL_HandleSIG;
sigaction(SIGINT, &action, NULL);
}
sigaction(SIGTERM, NULL, &action);
Jul 14, 2011
Jul 14, 2011
60
# ifdef HAVE_SA_SIGACTION
Mar 21, 2011
Mar 21, 2011
61
if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) {
Jul 14, 2011
Jul 14, 2011
62
63
64
# else
if ( action.sa_handler == SIG_DFL ) {
# endif
Mar 16, 2011
Mar 16, 2011
65
66
67
68
action.sa_handler = SDL_HandleSIG;
sigaction(SIGTERM, &action, NULL);
}
#elif HAVE_SIGNAL_H
Apr 26, 2001
Apr 26, 2001
69
70
71
void (*ohandler)(int);
/* Both SIGINT and SIGTERM are translated into quit interrupts */
Aug 21, 2005
Aug 21, 2005
72
ohandler = signal(SIGINT, SDL_HandleSIG);
Apr 26, 2001
Apr 26, 2001
73
74
75
76
77
if ( ohandler != SIG_DFL )
signal(SIGINT, ohandler);
ohandler = signal(SIGTERM, SDL_HandleSIG);
if ( ohandler != SIG_DFL )
signal(SIGTERM, ohandler);
Feb 6, 2006
Feb 6, 2006
78
#endif /* HAVE_SIGNAL_H */
Apr 26, 2001
Apr 26, 2001
79
80
81
82
/* That's it! */
return(0);
}
Aug 21, 2005
Aug 21, 2005
83
84
void SDL_QuitQuit(void)
{
Mar 16, 2011
Mar 16, 2011
85
86
87
88
89
90
91
92
93
94
95
96
97
#ifdef HAVE_SIGACTION
struct sigaction action;
sigaction(SIGINT, NULL, &action);
if ( action.sa_handler == SDL_HandleSIG ) {
action.sa_handler = SIG_DFL;
sigaction(SIGINT, &action, NULL);
}
sigaction(SIGTERM, NULL, &action);
if ( action.sa_handler == SDL_HandleSIG ) {
action.sa_handler = SIG_DFL;
sigaction(SIGTERM, &action, NULL);
}
#elif HAVE_SIGNAL_H
Aug 21, 2005
Aug 21, 2005
98
99
100
101
102
103
104
105
void (*ohandler)(int);
ohandler = signal(SIGINT, SIG_DFL);
if ( ohandler != SDL_HandleSIG )
signal(SIGINT, ohandler);
ohandler = signal(SIGTERM, SIG_DFL);
if ( ohandler != SDL_HandleSIG )
signal(SIGTERM, ohandler);
Feb 6, 2006
Feb 6, 2006
106
#endif /* HAVE_SIGNAL_H */
Aug 21, 2005
Aug 21, 2005
107
}
Apr 26, 2001
Apr 26, 2001
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* This function returns 1 if it's okay to close the application window */
int SDL_PrivateQuit(void)
{
int posted;
posted = 0;
if ( SDL_ProcessEvents[SDL_QUIT] == SDL_ENABLE ) {
SDL_Event event;
event.type = SDL_QUIT;
if ( (SDL_EventOK == NULL) || (*SDL_EventOK)(&event) ) {
posted = 1;
SDL_PushEvent(&event);
}
}
return(posted);
}