diff options
author | Dianne Hackborn <hackbod@google.com> | 2014-03-07 11:00:39 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2014-03-07 11:00:39 -0800 |
commit | 9552cdf434ac1c9ff8730f5492d649845ad4f86c (patch) | |
tree | 6eed63de494b181b64a48916e60d2993410f62dd /libsuspend/include | |
parent | 7d2998ea18f099eb24027a546cff6093516de7e5 (diff) | |
download | system_core-9552cdf434ac1c9ff8730f5492d649845ad4f86c.zip system_core-9552cdf434ac1c9ff8730f5492d649845ad4f86c.tar.gz system_core-9552cdf434ac1c9ff8730f5492d649845ad4f86c.tar.bz2 |
Add ability to have a callback when wakeups happen.
Change-Id: I02ff0e035bf8a97bd1a3b6b1699181fc3a137d79
Diffstat (limited to 'libsuspend/include')
-rw-r--r-- | libsuspend/include/suspend/autosuspend.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libsuspend/include/suspend/autosuspend.h b/libsuspend/include/suspend/autosuspend.h index f56fc6a..10e3d27 100644 --- a/libsuspend/include/suspend/autosuspend.h +++ b/libsuspend/include/suspend/autosuspend.h @@ -43,6 +43,13 @@ int autosuspend_enable(void); */ int autosuspend_disable(void); +/* + * set_wakeup_callback + * + * Set a function to be called each time the device wakes up from suspend. + */ +void set_wakeup_callback(void (*func)(void)); + __END_DECLS #endif |