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

Unified Diff: runtime/vm/gc_marker.cc

Issue 1537543002: Fix for issue 25236 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: code-review-comments Created 5 years 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 | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/gc_sweeper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/gc_marker.cc
diff --git a/runtime/vm/gc_marker.cc b/runtime/vm/gc_marker.cc
index 45e84d25fad6cbfde8a4ce603f56865a5cdd0607..fbe5af37e911bd2fa6ccc3b12f878f8c0412b7ce 100644
--- a/runtime/vm/gc_marker.cc
+++ b/runtime/vm/gc_marker.cc
@@ -595,7 +595,8 @@ class MarkTask : public ThreadPool::Task {
}
virtual void Run() {
- Thread::EnterIsolateAsHelper(isolate_, true);
+ bool result = Thread::EnterIsolateAsHelper(isolate_, true);
+ ASSERT(result);
{
StackZone stack_zone(Thread::Current());
Zone* zone = stack_zone.GetZone();
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/gc_sweeper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698