diff options
author | Christopher Ferris <cferris@google.com> | 2020-12-14 20:53:52 -0800 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2020-12-14 22:36:37 -0800 |
commit | 6ddc2c56c9dd29115263db2fc0f79282036e0b09 (patch) | |
tree | 4ce3fb91bccc95bd157dd4ca85d046b65a46d5fb /debuggerd/libdebuggerd/utility.cpp | |
parent | 5a611cb8346877493929582855d8bcbbfd8f3dbf (diff) |
Update for v5.10 kernel headers.
Test: Builds.
Change-Id: I6c4b04751df026ef7cbb91627174188c5e6d137c
Diffstat (limited to 'debuggerd/libdebuggerd/utility.cpp')
-rw-r--r-- | debuggerd/libdebuggerd/utility.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/debuggerd/libdebuggerd/utility.cpp b/debuggerd/libdebuggerd/utility.cpp index d7067ca6e..2f1b693fc 100644 --- a/debuggerd/libdebuggerd/utility.cpp +++ b/debuggerd/libdebuggerd/utility.cpp @@ -370,14 +370,12 @@ const char* get_sigcode(const siginfo_t* si) { return "SEGV_ADIDERR"; case SEGV_ADIPERR: return "SEGV_ADIPERR"; -#if defined(ANDROID_EXPERIMENTAL_MTE) case SEGV_MTEAERR: return "SEGV_MTEAERR"; case SEGV_MTESERR: return "SEGV_MTESERR"; -#endif } - static_assert(NSIGSEGV == SEGV_ADIPERR, "missing SEGV_* si_code"); + static_assert(NSIGSEGV == SEGV_MTESERR, "missing SEGV_* si_code"); break; case SIGSYS: switch (si->si_code) { |