We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1819323 commit 6789e1bCopy full SHA for 6789e1b
compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
@@ -170,7 +170,6 @@ void BlockSignals(__sanitizer_sigset_t *oldset) {
170
// If this signal is blocked, such calls cannot be handled and the process may
171
// hang.
172
internal_sigdelset(&set, 31);
173
-# endif
174
175
// Don't block synchronous signals
176
internal_sigdelset(&set, SIGSEGV);
@@ -180,6 +179,7 @@ void BlockSignals(__sanitizer_sigset_t *oldset) {
180
179
internal_sigdelset(&set, SIGABRT);
181
internal_sigdelset(&set, SIGFPE);
182
internal_sigdelset(&set, SIGPIPE);
+# endif
183
184
SetSigProcMask(&set, oldset);
185
}
0 commit comments