From 6e8977690147b75096c0a993efb53ae329e3fd2c Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 16 Oct 2018 13:09:32 -0700 Subject: ART: Refactor for bugprone-argument-comment Handles openjdkjvmti. Bug: 116054210 Test: WITH_TIDY=1 mmma art Change-Id: Ic73e3f32b08f3b6d9300428ad95d12a696db0458 --- openjdkjvmti/ti_object.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openjdkjvmti/ti_object.cc') 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 target(self->DecodeJObject(obj)); // This gets the list of threads trying to lock or wait on the monitor. art::MonitorInfo info(target.Ptr()); -- cgit v1.2.3-59-g8ed1b