>From 931fc1beb33bc52c4424c25649aa8321aa5372c5 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Tue, 6 Feb 2018 23:46:55 +0000 Subject: [PATCH 1/2] signal.h: remove SS_AUTODISARM this is the revert of commit 9680e1d03a794b0e0d5815c749478228ed40a36d Author: Szabolcs Nagy Date: 2016-08-20 17:04:44 +0200 add SS_AUTODISARM sigaltstack ss_flags from linux v4.7 to signal.h because it's not possible to support this feature in a conforming way given the posix requirements about ss_flags handling in sigaltstack, see http://www.openwall.com/lists/musl/2017/12/23/3 --- include/signal.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/signal.h b/include/signal.h index 2c8b3d55..a16094c5 100644 --- a/include/signal.h +++ b/include/signal.h @@ -239,8 +239,6 @@ void (*sigset(int, void (*)(int)))(int); #define POLL_HUP 6 #define SS_ONSTACK 1 #define SS_DISABLE 2 -#define SS_AUTODISARM (1U << 31) -#define SS_FLAG_BITS SS_AUTODISARM #endif #if defined(_BSD_SOURCE) || defined(_GNU_SOURCE) -- 2.15.0