debuggerd_handler: add SIGSYS to the list of handled signals. am: 4decbe0d6c am: 7325c7a220
am: 1529fe4c93
Change-Id: Ib531b372acc17ec311156e02281ed9927d83dab5
diff --git a/debuggerd/include/debuggerd/handler.h b/debuggerd/include/debuggerd/handler.h
index 809f670..7196e0a 100644
--- a/debuggerd/include/debuggerd/handler.h
+++ b/debuggerd/include/debuggerd/handler.h
@@ -48,6 +48,7 @@
#if defined(SIGSTKFLT)
sigaction(SIGSTKFLT, action, nullptr);
#endif
+ sigaction(SIGSYS, action, nullptr);
sigaction(SIGTRAP, action, nullptr);
sigaction(DEBUGGER_SIGNAL, action, nullptr);
}