OSDN Git Service

Fix issue #3177284: Account for wake lock power usage on Crespo
authorDianne Hackborn <hackbod@google.com>
Tue, 9 Nov 2010 03:10:58 +0000 (19:10 -0800)
committerDianne Hackborn <hackbod@google.com>
Tue, 9 Nov 2010 03:10:58 +0000 (19:10 -0800)
Change-Id: I5e3d6c4772f08277ee775dba191a5054dd5a4ca2

core/java/com/android/internal/os/PowerProfile.java

index 127ed68..99a6843 100644 (file)
@@ -47,6 +47,15 @@ public class PowerProfile {
     public static final String POWER_CPU_IDLE = "cpu.idle";
 
     /**
+     * Power consumption when CPU is awake (when a wake lock is held).  This
+     * should be 0 on devices that can go into full CPU power collapse even
+     * when a wake lock is held.  Otherwise, this is the power consumption in
+     * addition to POWERR_CPU_IDLE due to a wake lock being held but with no
+     * CPU activity.
+     */
+    public static final String POWER_CPU_AWAKE = "cpu.awake";
+
+    /**
      * Power consumption when CPU is in power collapse mode.
      */
     public static final String POWER_CPU_ACTIVE = "cpu.active";