Skip to content

Commit

Permalink
Merge "Update for new kernel 5.11 headers."
Browse files Browse the repository at this point in the history
  • Loading branch information
cferris1000 authored and Gerrit Code Review committed Feb 19, 2021
2 parents a4807cb + 95b026f commit d57652f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion debuggerd/libdebuggerd/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d57652f

Please sign in to comment.