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

Unified Diff: runtime/vm/object.cc

Issue 1314673008: Migrate logging infrastructure Isolate->Thread (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Finalize marking tasks in parallel, now that it's safe. Created 5 years, 3 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
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 107ad5dffecb28d3d5767a2e978853cf94a68107..ae083ab595261e6c26aee01af7ee563da193816c 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -13491,7 +13491,7 @@ void Code::GetInlinedFunctionsAt(
void Code::DumpInlinedIntervals() const {
- LogBlock lb(Isolate::Current());
+ LogBlock lb(Thread::Current());
ISL_Print("Inlined intervals:\n");
const Array& intervals = Array::Handle(GetInlinedIntervals());
if (intervals.IsNull() || (intervals.Length() == 0)) return;

Powered by Google App Engine
This is Rietveld 408576698