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

Unified Diff: runtime/vm/dart_api_state.cc

Issue 2089393002: Don't bypass safepoint check when background finalizer task enters the isolate. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_state.cc
diff --git a/runtime/vm/dart_api_state.cc b/runtime/vm/dart_api_state.cc
index 0a4ba89c0543d510deade25cf546da1745693195..b1541a39f97ef9872834e2b74141be7c94431fab 100644
--- a/runtime/vm/dart_api_state.cc
+++ b/runtime/vm/dart_api_state.cc
@@ -27,8 +27,7 @@ BackgroundFinalizer::BackgroundFinalizer(Isolate* isolate,
void BackgroundFinalizer::Run() {
bool result = Thread::EnterIsolateAsHelper(isolate_,
- Thread::kFinalizerTask,
- true /* bypass_safepoint */);
+ Thread::kFinalizerTask);
ASSERT(result);
{
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698