diff options
| -rw-r--r-- | compiler-rt/lib/asan/asan_posix.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/asan/asan_posix.cc b/compiler-rt/lib/asan/asan_posix.cc index 912bb7e7c10..7ce296e8083 100644 --- a/compiler-rt/lib/asan/asan_posix.cc +++ b/compiler-rt/lib/asan/asan_posix.cc @@ -74,6 +74,9 @@ static void MaybeInstallSigaction(int signum, sigact.sa_flags = SA_SIGINFO; if (FLAG_use_sigaltstack) sigact.sa_flags |= SA_ONSTACK; CHECK(0 == REAL(sigaction)(signum, &sigact, 0)); + if (FLAG_v >= 1) { + Report("Installed the sigaction for signal %d\n", signum); + } } static void ASAN_OnSIGSEGV(int, siginfo_t *siginfo, void *context) { |

