commit | 12b8c9d93db0546879306ce6acf4bfb6474471cd | [log] [tgz] |
---|---|---|
author | Christopher Ferris <cferris@google.com> | Thu Feb 04 14:06:34 2016 -0800 |
committer | Christopher Ferris <cferris@google.com> | Thu Feb 04 14:08:06 2016 -0800 |
tree | ca147973834d0a01b9cbb468224819ce1efbf3ed | |
parent | e99d23aba15f540b52d69d58bd7aee710dfc0610 [diff] [blame] |
Newer kernels added SEGV_BNDERR. Bug: 23789423 Change-Id: Ia2a9b0504546456c0da5dd20ae040b6df0977cbe
diff --git a/runtime/runtime_linux.cc b/runtime/runtime_linux.cc index 122dcb1..8237b06 100644 --- a/runtime/runtime_linux.cc +++ b/runtime/runtime_linux.cc
@@ -114,6 +114,9 @@ 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: