summaryrefslogtreecommitdiff
path: root/debuggerd/debuggerd.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-07-30 08:15:57 -0700
committerElliott Hughes <enh@google.com>2015-07-30 08:15:57 -0700
commitf39383103b888a38e486e8066d7c35838e2f98d4 (patch)
tree7256eae3e68e8e503c6c67ce6b7d20a2e89a7ea3 /debuggerd/debuggerd.cpp
parentdcf890914c7571d3068046b9df1f672e9f45b4d2 (diff)
bionic no longer sends SIGPIPE to debuggerd.
Static binaries don't get the signal handler installed (that's done by the dynamic linker) so we don't need to worry about seeing SIGPIPE crashes from old binaries. Bug: http://b/20659371 Change-Id: I3b5566634fadd3e822262561188d29814bccd1fd
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r--debuggerd/debuggerd.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp
index 787b7aad6..599995cfd 100644
--- a/debuggerd/debuggerd.cpp
+++ b/debuggerd/debuggerd.cpp
@@ -408,7 +408,6 @@ static void handle_request(int fd) {
case SIGBUS:
case SIGFPE:
case SIGILL:
- case SIGPIPE:
case SIGSEGV:
#ifdef SIGSTKFLT
case SIGSTKFLT: