diff options
-rw-r--r-- | runtime/runtime_linux.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/runtime_linux.cc b/runtime/runtime_linux.cc index 122dcb136a..8237b06a56 100644 --- a/runtime/runtime_linux.cc +++ b/runtime/runtime_linux.cc @@ -114,6 +114,9 @@ static const char* GetSignalCodeName(int signal_number, int signal_code) { switch (signal_code) { case SEGV_MAPERR: return "SEGV_MAPERR"; case SEGV_ACCERR: return "SEGV_ACCERR"; +#if defined(SEGV_BNDERR) + case SEGV_BNDERR: return "SEGV_BNDERR"; +#endif } break; case SIGTRAP: |