diff options
author | android-build-team Robot <android-build-team-robot@google.com> | 2020-09-22 01:04:47 +0000 |
---|---|---|
committer | android-build-team Robot <android-build-team-robot@google.com> | 2020-09-22 01:04:47 +0000 |
commit | 07da083e6bf36dd4be64a85b3461623d2488476d (patch) | |
tree | fc21546830650c084339a9892ea0aee2569408f7 /debuggerd/libdebuggerd/tombstone.cpp | |
parent | 79c5fee02e1430bec2f75956297f5b631e70b407 (diff) | |
parent | fb16db72d227d373b0ef8cc04c7efb6091f6cc68 (diff) |
Snap for 6852218 from fb16db72d227d373b0ef8cc04c7efb6091f6cc68 to sc-release
Change-Id: Iae251c05f967d42661cc2d19a0fac485c7972cf4
Diffstat (limited to 'debuggerd/libdebuggerd/tombstone.cpp')
-rw-r--r-- | debuggerd/libdebuggerd/tombstone.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/debuggerd/libdebuggerd/tombstone.cpp b/debuggerd/libdebuggerd/tombstone.cpp index 7af99c94c1..e1fe82b6d9 100644 --- a/debuggerd/libdebuggerd/tombstone.cpp +++ b/debuggerd/libdebuggerd/tombstone.cpp @@ -180,6 +180,9 @@ static void dump_thread_info(log_t* log, const ThreadInfo& thread_info) { _LOG(log, logtype::HEADER, "pid: %d, tid: %d, name: %s >>> %s <<<\n", thread_info.pid, thread_info.tid, thread_info.thread_name.c_str(), thread_info.process_name.c_str()); _LOG(log, logtype::HEADER, "uid: %d\n", thread_info.uid); + if (thread_info.tagged_addr_ctrl != -1) { + _LOG(log, logtype::HEADER, "tagged_addr_ctrl: %016lx\n", thread_info.tagged_addr_ctrl); + } } static std::string get_addr_string(uint64_t addr) { |