Skip to content Skip to main navigation Report an accessibility issue

EECS Publication

Reducing Power Consumption and Latency in Mobile Devices Using an Event Stream Model

Stephen Marz and Brad Vander Zanden

Most consumer-based mobile devices use asynchronous events to awaken apps. Currently, event handling is implemented in either an application or an appli- cation framework such as Java's VM or Microsoft's .NET, and it uses a 'polling loop' that periodically queries an event queue to determine if an event has oc- curred. These loops must awaken the process, check for an event, and then put the process back to sleep many times per second. This constant arousal prevents the CPU from being put into a deep sleep state, which increases power consumption. Additionally, the process cannot check for events while it sleeps, and this delay in handling events increases latency, which is the time that elapses between when an event occurs and when the application responds to the event. We call this model of event handling a 'pull' model because it needs to query hardware devices or software queues in order to 'pull' events from them. Recent advances in input devices support direct, informative interrupts to the kernel when an event occurs. This allows us to develop a much more efficient event handling model called the 'Event Stream Model' (ESM). This model is a push model that allows a process to sleep as long as no event occurs, but then im- mediately awakens a process when an event occurs. This model eliminates the polling loop, thus eliminating latency-inducing sleep between polls and reduc- ing unnecessary power consumption. To work properly, the ESM model must be implemented in the kernel, rather than in the application. In this paper, we describe how we implemented the ESM model in Android OS. Our results show that with the event stream model, power consumption is reduced by up to 23.8% in certain circumstances, and latency is reduced by an average of 13.6 milliseconds.

Published  2015-11-19 05:00:00  as  ut-eecs-15-737 (ID:595)

ut-eecs-15-737.pdf

« Back to Listing