summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Calin Juravle <calin@google.com> 2017-05-03 16:00:50 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-05-03 16:00:52 +0000
commit90c5ccbc1d2988f6274877547ff095c0f29ff77a (patch)
treece831efa659e12dcf39333dca75208d30877b8a6
parent29825550d6bd7f1185e16b3925c7f084078e688e (diff)
parent806843aa293d45d88edeccd49eb5d281ff7d844f (diff)
Merge "Increase profile saver minimum save period to 40 seconds"
-rw-r--r--runtime/jit/profile_saver_options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jit/profile_saver_options.h b/runtime/jit/profile_saver_options.h
index c8d256fec0..07aeb66eb6 100644
--- a/runtime/jit/profile_saver_options.h
+++ b/runtime/jit/profile_saver_options.h
@@ -20,7 +20,7 @@ namespace art {
struct ProfileSaverOptions {
public:
- static constexpr uint32_t kMinSavePeriodMs = 20 * 1000; // 20 seconds
+ static constexpr uint32_t kMinSavePeriodMs = 40 * 1000; // 40 seconds
static constexpr uint32_t kSaveResolvedClassesDelayMs = 5 * 1000; // 5 seconds
// Minimum number of JIT samples during launch to include a method into the profile.
static constexpr uint32_t kStartupMethodSamples = 1;