summaryrefslogtreecommitdiff
path: root/runtime/monitor_linux.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2017-06-01 16:28:27 -0700
committer Andreas Gampe <agampe@google.com> 2017-06-01 16:34:07 -0700
commit39b98113c0e6765a68fb1bc3cd8fd98c858ce637 (patch)
tree370dbf1f071fd79399081a4f51ec1cfd2caf9157 /runtime/monitor_linux.cc
parent596c58b3dc73a4017d49af6c5037bbd7109fd31e (diff)
ART: Move source owner data to LogContentionEvent
Change the signature of Monitor::LogContentionEvent to take the owner's ArtMethod and dex pc instead of the derived data. Move the decoding from monitor.cc to monitor_android.cc. This change does not change functionality. It is only in preparation for a later, actual change of what is being logged. Bug: 62241642 Test: m test-art-host Change-Id: I30f02eeecbc556f8eb7b637301ed8ac9b1e40a93
Diffstat (limited to 'runtime/monitor_linux.cc')
-rw-r--r--runtime/monitor_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor_linux.cc b/runtime/monitor_linux.cc
index 1c77ac0eb3..667866149b 100644
--- a/runtime/monitor_linux.cc
+++ b/runtime/monitor_linux.cc
@@ -18,7 +18,7 @@
namespace art {
-void Monitor::LogContentionEvent(Thread*, uint32_t, uint32_t, const char*, int32_t) {
+void Monitor::LogContentionEvent(Thread*, uint32_t, uint32_t, ArtMethod*, uint32_t) {
}
} // namespace art