diff options
| author | 2017-05-03 16:00:50 +0000 | |
|---|---|---|
| committer | 2017-05-03 16:00:52 +0000 | |
| commit | 90c5ccbc1d2988f6274877547ff095c0f29ff77a (patch) | |
| tree | ce831efa659e12dcf39333dca75208d30877b8a6 | |
| parent | 29825550d6bd7f1185e16b3925c7f084078e688e (diff) | |
| parent | 806843aa293d45d88edeccd49eb5d281ff7d844f (diff) | |
Merge "Increase profile saver minimum save period to 40 seconds"
| -rw-r--r-- | runtime/jit/profile_saver_options.h | 2 |
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; |