Commit 64792b29 authored by rtenneti's avatar rtenneti Committed by Commit bot

Increase ThreadWatcher unresponsive threashold to 72 secs in Dev

Increase the #of pings from 9 to 36 for Dev (72 secs of
unresponsiveness).

Increased it to reduce the number of crash dump reports
we receive. Will revert back, when we can auto triage
jank on UI/IO threads.

BUG=352489
R=sky@chromium.org

Review URL: https://codereview.chromium.org/588373002

Cr-Commit-Position: refs/heads/master@{#296268}
parent 1052875a
...@@ -534,7 +534,9 @@ void ThreadWatcherList::ParseCommandLine( ...@@ -534,7 +534,9 @@ void ThreadWatcherList::ParseCommandLine(
uint32* unresponsive_threshold, uint32* unresponsive_threshold,
CrashOnHangThreadMap* crash_on_hang_threads) { CrashOnHangThreadMap* crash_on_hang_threads) {
// Initialize |unresponsive_threshold| to a default value. // Initialize |unresponsive_threshold| to a default value.
*unresponsive_threshold = kUnresponsiveCount; // TODO(rtenneti): Changed the default value to 4 times, until we can triage
// hangs automatically (and to reduce the crash dumps).
*unresponsive_threshold = kUnresponsiveCount * 4;
// Increase the unresponsive_threshold on the Stable and Beta channels to // Increase the unresponsive_threshold on the Stable and Beta channels to
// reduce the number of crashes due to ThreadWatcher. // reduce the number of crashes due to ThreadWatcher.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment