From f286c120cd61910c221ac66e286b2c190c0387b5 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 25 Jan 2015 15:46:56 +0000 Subject: [PATCH] SIG_DFL: note must be zero, ready for execve tidy --- Kernel/include/kernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/include/kernel.h b/Kernel/include/kernel.h index 054cf7e3..6412f951 100644 --- a/Kernel/include/kernel.h +++ b/Kernel/include/kernel.h @@ -292,7 +292,7 @@ struct mount { #define SIGSYS 31 #define SIGUNUSED 31 -#define SIG_DFL (int16_t (*)())0 +#define SIG_DFL (int16_t (*)())0 /* Must be 0 */ #define SIG_IGN (int16_t (*)())1 #define sigmask(sig) (1UL<<(sig)) -- 2.34.1