debuggerd_handler: add SIGSYS to the list of handled signals.

am: 4decbe0d6c

Change-Id: I01f3ff76051bddc16abe8b4909ffb22b62e0f372
This commit is contained in:
Josh Gao 2017-01-24 02:34:49 +00:00 committed by android-build-merger
commit 7325c7a220

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);
}