Use only signals which are defined, since not all are portable
For instance Windows has support for unix signals but only for some of the signals.
This commit is contained in:
parent
3fc0c192fd
commit
ba70a6fd5a
1 changed files with 10 additions and 6 deletions
|
@ -1580,12 +1580,8 @@ midori_remove_config_file (gint clear_prefs,
|
|||
static void
|
||||
signal_handler (int signal_id)
|
||||
{
|
||||
if (signal_id == SIGHUP || signal_id == SIGINT
|
||||
|| signal_id == SIGTERM || signal_id == SIGQUIT)
|
||||
{
|
||||
midori_app_quit_cb (NULL);
|
||||
gtk_main_quit ();
|
||||
}
|
||||
midori_app_quit_cb (NULL);
|
||||
gtk_main_quit ();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -1664,11 +1660,19 @@ main (int argc,
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_SIGNAL_H
|
||||
#ifdef SIGHUP
|
||||
signal (SIGHUP, &signal_handler);
|
||||
#endif
|
||||
#ifdef SIGINT
|
||||
signal (SIGINT, &signal_handler);
|
||||
#endif
|
||||
#ifdef SIGTERM
|
||||
signal (SIGTERM, &signal_handler);
|
||||
#endif
|
||||
#ifdef SIGQUIT
|
||||
signal (SIGQUIT, &signal_handler);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Parse cli options */
|
||||
webapp = NULL;
|
||||
|
|
Loading…
Reference in a new issue