mirror of
https://github.com/libretro/RetroArch
synced 2025-02-21 00:40:09 +00:00
@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:
parent
eb77f99e1e
commit
1e1f2cfee0
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user