diff options
author | Christopher Ferris <cferris@google.com> | 2021-02-19 20:41:18 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2021-02-19 20:41:18 +0000 |
commit | 1b53137db54eed4cbdc9cd9ef764cd46a5850b8e (patch) | |
tree | 18c0381e5ec390b47a4f91114a48cc826875f0b4 /debuggerd/libdebuggerd/utility.cpp | |
parent | d71722b665d9d8b0cf77537669d2bbb9292abb13 (diff) | |
parent | c5b658077b395090f135f44a7f21898f6493afb4 (diff) |
Merge "Update for new kernel 5.11 headers." am: d57652f15b am: c5b658077b
Original change: https://android-review.googlesource.com/c/platform/system/core/+/1595351
MUST ONLY BE SUBMITTED BY AUTOMERGER
Change-Id: I0d9393e92832524070723824d7dff50edd1a584d
Diffstat (limited to 'debuggerd/libdebuggerd/utility.cpp')
-rw-r--r-- | debuggerd/libdebuggerd/utility.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debuggerd/libdebuggerd/utility.cpp b/debuggerd/libdebuggerd/utility.cpp index f941990d0..6f13ed4c2 100644 --- a/debuggerd/libdebuggerd/utility.cpp +++ b/debuggerd/libdebuggerd/utility.cpp @@ -391,8 +391,10 @@ const char* get_sigcode(const siginfo_t* si) { case SIGSYS: switch (si->si_code) { case SYS_SECCOMP: return "SYS_SECCOMP"; + case SYS_USER_DISPATCH: + return "SYS_USER_DISPATCH"; } - static_assert(NSIGSYS == SYS_SECCOMP, "missing SYS_* si_code"); + static_assert(NSIGSYS == SYS_USER_DISPATCH, "missing SYS_* si_code"); break; case SIGTRAP: switch (si->si_code) { |