Merge "Update for new kernel 5.11 headers." am: d57652f15b am: c5b658077b am: 1b53137db5
Original change: https://android-review.googlesource.com/c/platform/system/core/+/1595351 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ib6f2b42c637c7c7cc7f2149ae0835c0360d79a1d
This commit is contained in:
commit
f1175b105d
1 changed files with 3 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue