Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 14c06e07 authored by Christopher Ferris's avatar Christopher Ferris Committed by Gerrit Code Review
Browse files

Merge "Newer kernels added SEGV_BNDERR."

parents cfd44ee7 5d56e285
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -134,8 +134,15 @@ static const char* get_sigcode(int signo, int code) {
      switch (code) {
        case SEGV_MAPERR: return "SEGV_MAPERR";
        case SEGV_ACCERR: return "SEGV_ACCERR";
#if defined(SEGV_BNDERR)
        case SEGV_BNDERR: return "SEGV_BNDERR";
#endif
      }
#if defined(SEGV_BNDERR)
      static_assert(NSIGSEGV == SEGV_BNDERR, "missing SEGV_* si_code");
#else
      static_assert(NSIGSEGV == SEGV_ACCERR, "missing SEGV_* si_code");
#endif
      break;
    case SIGTRAP:
      switch (code) {