OSDN Git Service

Using the correct time for wait_start_ms when lock contention logging is enabled
authorXin Guan <a18772@motorola.com>
Fri, 22 Aug 2014 16:55:37 +0000 (11:55 -0500)
committerIan Rogers <irogers@google.com>
Fri, 22 Aug 2014 20:46:11 +0000 (13:46 -0700)
Bug: 17208457
Change-Id: I35555e0acf3b37bb3776a62c64d59ae93403b237

runtime/monitor.cc

index 107efd7..0b6e3b2 100644 (file)
@@ -246,7 +246,7 @@ void Monitor::Lock(Thread* self) {
     }
     // Contended.
     const bool log_contention = (lock_profiling_threshold_ != 0);
-    uint64_t wait_start_ms = log_contention ? 0 : MilliTime();
+    uint64_t wait_start_ms = log_contention ? MilliTime() : 0;
     mirror::ArtMethod* owners_method = locking_method_;
     uint32_t owners_dex_pc = locking_dex_pc_;
     // Do this before releasing the lock so that we don't get deflated.