diff options
Diffstat (limited to 'openjdkjvmti/ti_object.cc')
-rw-r--r-- | openjdkjvmti/ti_object.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openjdkjvmti/ti_object.cc b/openjdkjvmti/ti_object.cc index 89ce35256d..344ae88546 100644 --- a/openjdkjvmti/ti_object.cc +++ b/openjdkjvmti/ti_object.cc @@ -92,7 +92,7 @@ jvmtiError ObjectUtil::GetObjectMonitorUsage( { art::ScopedObjectAccess soa(self); // Now we know we have the shared lock. art::ScopedThreadSuspension sts(self, art::kNative); - art::ScopedSuspendAll ssa("GetObjectMonitorUsage", /*long_suspend*/false); + art::ScopedSuspendAll ssa("GetObjectMonitorUsage", /*long_suspend=*/false); art::ObjPtr<art::mirror::Object> target(self->DecodeJObject(obj)); // This gets the list of threads trying to lock or wait on the monitor. art::MonitorInfo info(target.Ptr()); |