Merge pull request #11968 from Defenso-QTH/non-fatal-SIGUSR

libfreerdp: remove SIGUSR1 and SIGUSR2 from fatal signals
This commit is contained in:
akallabeth
2025-10-30 08:44:49 +01:00
committed by GitHub

View File

@@ -145,8 +145,8 @@ static void fatal_handler(int signum)
static const int term_signals[] = { SIGINT, SIGKILL, SIGQUIT, SIGSTOP, SIGTERM };
static const int fatal_signals[] = { SIGABRT, SIGALRM, SIGBUS, SIGFPE, SIGHUP, SIGILL,
SIGSEGV, SIGTTIN, SIGTTOU, SIGUSR1, SIGUSR2,
static const int fatal_signals[] = { SIGABRT, SIGALRM, SIGBUS, SIGFPE, SIGHUP,
SIGILL, SIGSEGV, SIGTTIN, SIGTTOU,
#ifdef SIGPOLL
SIGPOLL,
#endif