signal.h: add si_code values for SIGSYS
authorSzabolcs Nagy <nsz@port70.net>
Sun, 7 Mar 2021 22:15:11 +0000 (22:15 +0000)
committerRich Felker <dalias@aerifal.cx>
Tue, 8 Mar 2022 22:19:46 +0000 (17:19 -0500)
unlike other si_code defines, SYS_ is not in the posix reserved namespace
which is likely the reason why SYS_SECCOMP was previously missing (was new
in linux v3.5).

include/signal.h

index f270a59..4dd4614 100644 (file)
@@ -261,6 +261,8 @@ void (*sigset(int, void (*)(int)))(int);
 #if defined(_BSD_SOURCE) || defined(_GNU_SOURCE)
 #define NSIG _NSIG
 typedef void (*sig_t)(int);
+
+#define SYS_SECCOMP 1
 #endif
 
 #ifdef _GNU_SOURCE