[PATCH] D47650: Disable recursive interceptors in signal(3)/MSan
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 7 00:59:35 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rCRT334168: Disable recursive interceptors in signal(3)/MSan (authored by kamil, committed by ).
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D47650
Files:
lib/msan/msan_interceptors.cc
Index: lib/msan/msan_interceptors.cc
===================================================================
--- lib/msan/msan_interceptors.cc
+++ lib/msan/msan_interceptors.cc
@@ -1292,6 +1292,7 @@
#define SIGNAL_INTERCEPTOR_SIGNAL_IMPL(func, signo, handler) \
{ \
handler = signal_impl(signo, handler); \
+ InterceptorScope interceptor_scope; \
return REAL(func)(signo, handler); \
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47650.150270.patch
Type: text/x-patch
Size: 522 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180607/919d6eb8/attachment.bin>
More information about the llvm-commits
mailing list