diff options
author | Elliott Hughes <enh@google.com> | 2014-05-17 00:39:21 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-05-17 00:39:22 +0000 |
commit | c4afc19236ae7253acc3266b4ca8515473e9c7cc (patch) | |
tree | b3317e7f3f987c248452ece82145b1899840185a /debuggerd/debuggerd.cpp | |
parent | 2d03a498f9a1258740a9bbf6b28882506cde3ad9 (diff) | |
parent | 7e35ae8fc840cc1855d26084fdd72cbc3241f04d (diff) |
Merge "Add SIGTRAP support to crasher and debuggerd."
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r-- | debuggerd/debuggerd.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp index 76bd7a32c..94232cf19 100644 --- a/debuggerd/debuggerd.cpp +++ b/debuggerd/debuggerd.cpp @@ -322,15 +322,16 @@ static void handle_request(int fd) { } break; - case SIGILL: case SIGABRT: case SIGBUS: case SIGFPE: - case SIGSEGV: + case SIGILL: case SIGPIPE: + case SIGSEGV: #ifdef SIGSTKFLT case SIGSTKFLT: #endif + case SIGTRAP: XLOG("stopped -- fatal signal\n"); // Send a SIGSTOP to the process to make all of // the non-signaled threads stop moving. Without |