From dedabea4b3d61a87cedb5c8d7ccce5b86ea84afe Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 24 Mar 2014 16:09:54 +0100 Subject: timer: support timers that can resume the system from suspend --- src/core/timer.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/core/timer.h') diff --git a/src/core/timer.h b/src/core/timer.h index 712cced296..de412a043e 100644 --- a/src/core/timer.h +++ b/src/core/timer.h @@ -50,7 +50,6 @@ typedef enum TimerBase { typedef struct TimerValue { TimerBase base; bool disabled; - clockid_t clock_id; usec_t value; /* only for monotonic events */ CalendarSpec *calendar_spec; /* only for calendar events */ @@ -72,8 +71,9 @@ struct Timer { usec_t accuracy_usec; LIST_HEAD(TimerValue, values); - usec_t next_elapse_monotonic; usec_t next_elapse_realtime; + usec_t next_elapse_monotonic_or_boottime; + dual_timestamp last_trigger; TimerState state, deserialized_state; @@ -83,8 +83,7 @@ struct Timer { TimerResult result; bool persistent; - - dual_timestamp last_trigger; + bool wake_system; char *stamp_path; }; -- cgit v1.2.3-54-g00ecf