debuggerd_handler: add SIGSYS to the list of handled signals. am: 4decbe0d6c

am: 7325c7a220

Change-Id: Ib74ec1abe20d719b23f1e6d119f85722c136b1eb
This commit is contained in:
Josh Gao 2017-01-24 02:37:18 +00:00 committed by android-build-merger
commit 1529fe4c93

View file

@ -48,6 +48,7 @@ static void __attribute__((__unused__)) debuggerd_register_handlers(struct sigac
#if defined(SIGSTKFLT)
sigaction(SIGSTKFLT, action, nullptr);
#endif
sigaction(SIGSYS, action, nullptr);
sigaction(SIGTRAP, action, nullptr);
sigaction(DEBUGGER_SIGNAL, action, nullptr);
}