unix/unix_mphal: Just consistently set sigaction.sa_flags to 0.
This commit is contained in:
parent
2fe7e6bef0
commit
3c2b377711
|
@ -53,7 +53,7 @@ void mp_hal_set_interrupt_char(char c) {
|
|||
#ifndef _WIN32
|
||||
// enable signal handler
|
||||
struct sigaction sa;
|
||||
memset(&sa, 0, sizeof(sa));
|
||||
sa.sa_flags = 0;
|
||||
sa.sa_handler = sighandler;
|
||||
sigemptyset(&sa.sa_mask);
|
||||
sigaction(SIGINT, &sa, NULL);
|
||||
|
@ -62,6 +62,7 @@ void mp_hal_set_interrupt_char(char c) {
|
|||
#ifndef _WIN32
|
||||
// disable signal handler
|
||||
struct sigaction sa;
|
||||
sa.sa_flags = 0;
|
||||
sa.sa_handler = SIG_DFL;
|
||||
sigemptyset(&sa.sa_mask);
|
||||
sigaction(SIGINT, &sa, NULL);
|
||||
|
|
Loading…
Reference in New Issue