Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1128)

Unified Diff: runtime/vm/isolate.cc

Issue 2126413002: Allow for recursive invocation of SafepointOperationScopes. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address code review comments. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/safepoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index eee6d049a5dfdf039ba1fcd1549e764968d2b206..d43f494ad172c2c8e08057f2c6531c572a31cffc 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -2527,7 +2527,7 @@ Thread* Isolate::ScheduleThread(bool is_mutator, bool bypass_safepoint) {
// If a safepoint operation is in progress wait for it
// to finish before scheduling this thread in.
- while (!bypass_safepoint && safepoint_handler()->safepoint_in_progress()) {
+ while (!bypass_safepoint && safepoint_handler()->SafepointInProgress()) {
ml.Wait();
}
« no previous file with comments | « no previous file | runtime/vm/safepoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698