diff options
| -rw-r--r-- | runtime/trace_profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/trace_profile.h b/runtime/trace_profile.h index 6cfc91b1fb..cd6fdc01ea 100644 --- a/runtime/trace_profile.h +++ b/runtime/trace_profile.h @@ -34,8 +34,8 @@ class ArtMethod; static constexpr size_t kAlwaysOnTraceBufSize = 2048; // The typical frequency at which the timestamp counters are updated is 24576000. -// 2^22 (4194304) corresponds to about 170ms at that frequency. -static constexpr size_t kLongRunningMethodThreshold = 1 << 22; +// 2^23 (8388608) corresponds to about 341ms at that frequency. +static constexpr size_t kLongRunningMethodThreshold = 1 << 23; enum class LowOverheadTraceType { kLongRunningMethods, |