diff options
author | Sravan Kumar Ambapuram <asravan@codeaurora.org> | 2014-05-07 11:15:38 +0530 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2015-10-30 16:59:40 -0700 |
commit | 892e13560e15a3df05d070d8f9e76a4a51e1d7f4 (patch) | |
tree | 848acff3baafa0ae61e96118453039c63ef7f6c4 | |
parent | b0790dca8f62f2b1b3878b3ec04c0f409d16a1fe (diff) | |
download | system_core-892e13560e15a3df05d070d8f9e76a4a51e1d7f4.zip system_core-892e13560e15a3df05d070d8f9e76a4a51e1d7f4.tar.gz system_core-892e13560e15a3df05d070d8f9e76a4a51e1d7f4.tar.bz2 |
healthd: increase healthd fast timer to 10mins instead of 1min
healthd 1 min wakeups are causing significant power impact
during static display use case. so increasing the timer to 10min.
Change-Id: If7a514e4152789144242e198175918b6687c3bcf
-rw-r--r-- | healthd/healthd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/healthd/healthd.cpp b/healthd/healthd.cpp index c3de13c..61a6277 100644 --- a/healthd/healthd.cpp +++ b/healthd/healthd.cpp @@ -37,7 +37,7 @@ using namespace android; // Periodic chores intervals in seconds -#define DEFAULT_PERIODIC_CHORES_INTERVAL_FAST (60 * 1) +#define DEFAULT_PERIODIC_CHORES_INTERVAL_FAST (60 * 10) #define DEFAULT_PERIODIC_CHORES_INTERVAL_SLOW (60 * 10) static struct healthd_config healthd_config = { |