diff options
author | Josh Gao <jmgao@google.com> | 2016-03-26 01:16:25 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-03-26 01:16:25 +0000 |
commit | dac593937fa8ae346138eae26643734ad85020ad (patch) | |
tree | 55404be97e251df205c076102e1c2b3b47f76a58 /debuggerd/debuggerd.cpp | |
parent | 34c081cf3e5a1d622ddd4ae86272ff6c7183231d (diff) | |
parent | dfa163df500ca71b71be315aa55e8859c946d0fb (diff) |
debuggerd: add SIGSYS to the list of handled signals.
am: dfa163d
* commit 'dfa163df500ca71b71be315aa55e8859c946d0fb':
debuggerd: add SIGSYS to the list of handled signals.
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r-- | debuggerd/debuggerd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp index 606456806..8a545a5e0 100644 --- a/debuggerd/debuggerd.cpp +++ b/debuggerd/debuggerd.cpp @@ -415,6 +415,7 @@ static bool perform_dump(const debugger_request_t& request, int fd, int tombston #ifdef SIGSTKFLT case SIGSTKFLT: #endif + case SIGSYS: case SIGTRAP: ALOGV("stopped -- fatal signal\n"); *crash_signal = signal; |