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

Unified Diff: runtime/vm/native_entry.cc

Issue 2818253002: Make --trace-natives respect the isolate filter. (Closed)
Patch Set: Created 3 years, 8 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 | « runtime/vm/native_entry.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/native_entry.cc
diff --git a/runtime/vm/native_entry.cc b/runtime/vm/native_entry.cc
index 0420b4ac98ce7e77835f54ca04c9184404288393..ecd4f0c268e0113cf2747e5725379fadc495e6b9 100644
--- a/runtime/vm/native_entry.cc
+++ b/runtime/vm/native_entry.cc
@@ -271,7 +271,7 @@ void NativeEntry::LinkNativeCall(Dart_NativeArguments args) {
const Function& func = Function::Handle(zone, code.function());
if (FLAG_trace_natives) {
- OS::Print("Resolving native target for %s\n", func.ToCString());
+ THR_Print("Resolving native target for %s\n", func.ToCString());
}
target_function =
@@ -320,7 +320,7 @@ void NativeEntry::LinkNativeCall(Dart_NativeArguments args) {
patch_target_function, trampoline);
if (FLAG_trace_natives) {
- OS::Print(" -> %p (%s)\n", target_function,
+ THR_Print(" -> %p (%s)\n", target_function,
is_bootstrap_native ? "bootstrap" : "non-bootstrap");
}
}
« no previous file with comments | « runtime/vm/native_entry.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698