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

Unified Diff: runtime/vm/timeline.h

Issue 1814813003: Collect samples for background threads. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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/profiler_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/timeline.h
diff --git a/runtime/vm/timeline.h b/runtime/vm/timeline.h
index 1ce66877ea459f30076024e553e3be9dff661652..ca683e717c0c3d4d7064a90ce521a060b5c03588 100644
--- a/runtime/vm/timeline.h
+++ b/runtime/vm/timeline.h
@@ -376,10 +376,10 @@ class TimelineStream {
};
#ifndef PRODUCT
-#define TIMELINE_FUNCTION_COMPILATION_DURATION(thread, suffix, function) \
+#define TIMELINE_FUNCTION_COMPILATION_DURATION(thread, name, function) \
TimelineDurationScope tds(thread, \
Timeline::GetCompilerStream(), \
- "Compile" suffix); \
+ name); \
if (tds.enabled()) { \
tds.SetNumArguments(1); \
tds.CopyArgument( \
@@ -388,7 +388,7 @@ class TimelineStream {
function.ToLibNamePrefixedQualifiedCString()); \
}
#else
-#define TIMELINE_FUNCTION_COMPILATION_DURATION(thread, suffix, function)
+#define TIMELINE_FUNCTION_COMPILATION_DURATION(thread, name, function)
#endif // !PRODUCT
// See |TimelineDurationScope| and |TimelineBeginEndScope|.
« no previous file with comments | « runtime/vm/profiler_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698