summaryrefslogtreecommitdiff
path: root/debuggerd/debuggerd.cpp
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-03-26 01:16:25 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-03-26 01:16:25 +0000
commitdac593937fa8ae346138eae26643734ad85020ad (patch)
tree55404be97e251df205c076102e1c2b3b47f76a58 /debuggerd/debuggerd.cpp
parent34c081cf3e5a1d622ddd4ae86272ff6c7183231d (diff)
parentdfa163df500ca71b71be315aa55e8859c946d0fb (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.cpp1
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;