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

Unified Diff: src/log-utils.cc

Issue 11348298: Take instrumentation overhead into account when plotting. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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 | « src/log.cc ('k') | tools/plot-timer-events » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/log-utils.cc
diff --git a/src/log-utils.cc b/src/log-utils.cc
index 246f6851359ebc8ece402d60fad6157fd089df9b..d8d92cbe211607f03e2a6f131f6f2f481b47f023 100644
--- a/src/log-utils.cc
+++ b/src/log-utils.cc
@@ -67,7 +67,7 @@ void Log::Initialize() {
FLAG_log_suspect = true;
FLAG_log_handles = true;
FLAG_log_regexp = true;
- FLAG_log_timer_events = true;
+ FLAG_log_internal_timer_events = true;
}
// --prof implies --log-code.
@@ -82,7 +82,7 @@ void Log::Initialize() {
bool open_log_file = FLAG_log || FLAG_log_runtime || FLAG_log_api
|| FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
|| FLAG_log_regexp || FLAG_log_state_changes || FLAG_ll_prof
- || FLAG_log_timer_events;
+ || FLAG_log_internal_timer_events;
// If we're logging anything, we need to open the log file.
if (open_log_file) {
« no previous file with comments | « src/log.cc ('k') | tools/plot-timer-events » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698