@yurivict: It's supposed to come from RetroArch itself, we refactored the signals recently and didn't really test it on the more unusual platforms. Close #3224.

This commit is contained in:
Alcaro 2016-07-16 18:36:21 +02:00
parent eb77f99e1e
commit 1e1f2cfee0

View File

@ -22,6 +22,14 @@
static volatile sig_atomic_t bsd_sighandler_quit;
static void frontend_bsd_sighandler(int sig)
{
(void)sig;
if (bsd_sighandler_quit)
exit(1);
bsd_sighandler_quit = 1;
}
static void frontend_bsd_install_signal_handlers(void)
{
struct sigaction sa;