summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.cc
diff options
context:
space:
mode:
authorJeff Hao <jeffhao@google.com>2013-08-22 15:36:42 -0700
committerJeff Hao <jeffhao@google.com>2013-08-26 16:44:06 -0700
commit23009dca63c1699e28bfeaa8b45ca48fa0e86ace (patch)
tree33645ffca45249f4d8dc351dca17327c29613317 /runtime/runtime.cc
parentfb2451b516f8411756fe7b6f91b5534cf3ce8682 (diff)
downloadart-23009dca63c1699e28bfeaa8b45ca48fa0e86ace.zip
art-23009dca63c1699e28bfeaa8b45ca48fa0e86ace.tar.gz
art-23009dca63c1699e28bfeaa8b45ca48fa0e86ace.tar.bz2
Add art support for sample profiling from traceview gui.
Change-Id: I6004bf143521b872084ca4aae873bea3524aa895
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r--runtime/runtime.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index 51a67c1..5679d4e 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -925,7 +925,8 @@ bool Runtime::Init(const Options& raw_options, bool ignore_unrecognized) {
method_trace_file_size_ = options->method_trace_file_size_;
if (options->method_trace_) {
- Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0, false);
+ Trace::Start(options->method_trace_file_.c_str(), -1, options->method_trace_file_size_, 0,
+ false, false, 0);
}
VLOG(startup) << "Runtime::Init exiting";