Activity Timers (Windows CE 5.0)

Send Feedback

Upon initialization, the Power Manager reads the registry to acquire a list of activity timer names. For each timer, Power Manger checks for a time-out, in seconds, and an optional list of wake sources. It then creates the following named events:

  • A timer reset event.
  • An active status manual-reset event.
  • A manual-reset event.

If the time-out associated with the timer expires without a reset event being signaled, the Power Manager resets the active event and sets the inactive event. If the reset event is signaled, the Power Manager resets the inactive event and sets the active event.

The following code example is a registry setting for configuring an activity timer.

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\ActivityTimers\SystemActivity]
    "Timeout"=dword:A
    "WakeSources"=multi_sz:"0x20"

This set of registry values causes the Power Manager to create three events with the following names: PowerManager/ActivityTimer/SystemActivity, PowerManager/SystemActivity_Active, and PowerManager/SystemActivity_Inactive. The first event is an auto-reset event that any driver may signal to indicate the system activity. Drivers that support resetting activity timers should read the name of the timer's reset event from the registry. The other events are manual reset events, of which only one is signaled at a time. Drivers, applications, or the Power Manager itself may open handles to these events to determine if the timer has expired. These events indicate the status of the activity timer. The reset event is an input to the activity timer system and the status events are the corresponding outputs.

In addition to creating events, this set of registry entries associates a wake source identifier with the activity timer. If the OS resumes and the Power Manager determines that the wake source corresponding to this ID caused the system to resume, it will set the associated activity timer to**active. The Power Manager uses the IOCTL_HAL_GET_WAKE_SOURCE kernel IOCTL to determine what woke the system. The active timer allows the development workstation that is in finite state to manage OS power state transitions to use the activity timer as input. It then uses that input to make a decision as to which system power state is the most appropriate to enter during the resume process. For example, the Power Manager might enter an OS power state in which the display and backlight are off. The Power Manager enters this state so that network synchronization can occur without disturbing the user.

Any number of drivers may open handles to the reset event of the activity timer. Drivers can reset the activity timer when appropriate. A driver should read the name of the event from the registry. This allows OEMs to customize the registry. By customizing the registry, the OEMs decide how a driver's activity should be interpreted by the Power Manager. Potential sources of activity include all drivers that open handles to the reset event of the activity timer.

Any number of threads may open handles to the manual-reset activity/inactivity events and wait on them to determine the status of the OS. For example, a backlight driver may use the pair of manual-reset events created for an activity timer to decide how to control backlight power and intensity.

When the system suspends, the Power Manager resets the active manual-reset events associated with activity timers. On a resume event, it scans the timers to see if any are associated with the wake source that caused the system to resume. If it finds a match, that activity event is signaled. This allows the Power Manager to resume in the system power state associated with that activity timer.

See Also

Power Management | Activity Timer Behavior | Activity Timer Time-outs and the Power Control Panel Utility | Activity Timer Events | Activity Timer Resets

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.