Index: runtime/vm/lockers.h |
diff --git a/runtime/vm/lockers.h b/runtime/vm/lockers.h |
index f3f5540353b52b0ea6b119526a82f6fc5f84ddf1..42b09841d19cc1d065228fadf4d2480e1ac929ab 100644 |
--- a/runtime/vm/lockers.h |
+++ b/runtime/vm/lockers.h |
@@ -50,6 +50,9 @@ class MonitorLocker : public ValueObject { |
return monitor_->Wait(millis); |
} |
+ Monitor::WaitResult WaitWithSafepointCheck( |
+ Thread* thread, int64_t millis = Monitor::kNoTimeout); |
+ |
Monitor::WaitResult WaitMicros(int64_t micros = Monitor::kNoTimeout) { |
return monitor_->WaitMicros(micros); |
} |