diff options
author | Peter Collingbourne <pcc@google.com> | 2020-12-21 14:08:38 -0800 |
---|---|---|
committer | Peter Collingbourne <pcc@google.com> | 2021-01-11 10:55:51 -0800 |
commit | cd27807bfe9264d17dab7add61f0ea245e17e26f (patch) | |
tree | 5d8c33d9f323a94d2e76a6763586acc73606bbe6 /debuggerd/crash_dump.cpp | |
parent | e3e5ae9eae5f898c7fd2b382240564cc5c7147d7 (diff) |
Remove ANDROID_EXPERIMENTAL_MTE.
Now that the feature guarded by this flag has landed in Linux 5.10
we no longer need the flag, so we can remove it.
Bug: 135772972
Change-Id: I02fa50848cbd0486c23c8a229bb8f1ab5dd5a56f
Diffstat (limited to 'debuggerd/crash_dump.cpp')
-rw-r--r-- | debuggerd/crash_dump.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/debuggerd/crash_dump.cpp b/debuggerd/crash_dump.cpp index b3e81b04b..4f600055d 100644 --- a/debuggerd/crash_dump.cpp +++ b/debuggerd/crash_dump.cpp @@ -40,7 +40,6 @@ #include <android-base/stringprintf.h> #include <android-base/strings.h> #include <android-base/unique_fd.h> -#include <bionic/mte_kernel.h> #include <bionic/reserved_signals.h> #include <cutils/sockets.h> #include <log/log.h> @@ -484,7 +483,6 @@ int main(int argc, char** argv) { continue; } -#ifdef ANDROID_EXPERIMENTAL_MTE struct iovec iov = { &info.tagged_addr_ctrl, sizeof(info.tagged_addr_ctrl), @@ -493,7 +491,6 @@ int main(int argc, char** argv) { reinterpret_cast<void*>(&iov)) == -1) { info.tagged_addr_ctrl = -1; } -#endif if (thread == g_target_thread) { // Read the thread's registers along with the rest of the crash info out of the pipe. |