X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Ftimer.h;h=6510ed2844a19ff73e3eddc1a18811ded6b1ace0;hp=0ec3e0d9bbd071663f00e31f274aeac0934b6c33;hb=6759e7a7638fc98877f98a7d45b265461ea78674;hpb=e99e38bbdcca3fe5956823bdb3d38544ccf93221 diff --git a/src/timer.h b/src/timer.h index 0ec3e0d9b..6510ed284 100644 --- a/src/timer.h +++ b/src/timer.h @@ -30,20 +30,55 @@ typedef enum TimerState { TIMER_DEAD, TIMER_WAITING, TIMER_RUNNING, - _TIMER_STATE_MAX + TIMER_ELAPSED, + TIMER_MAINTENANCE, + _TIMER_STATE_MAX, + _TIMER_STATE_INVALID = -1 } TimerState; +typedef enum TimerBase { + TIMER_ACTIVE, + TIMER_BOOT, + TIMER_STARTUP, + TIMER_UNIT_ACTIVE, + TIMER_UNIT_INACTIVE, + _TIMER_BASE_MAX, + _TIMER_BASE_INVALID = -1 +} TimerBase; + +typedef struct TimerValue { + TimerBase base; + usec_t value; + + usec_t next_elapse; + + bool disabled; + + LIST_FIELDS(struct TimerValue, value); +} TimerValue; + struct Timer { Meta meta; - TimerState state; - - clockid_t clock_id; + LIST_HEAD(TimerValue, values); usec_t next_elapse; - Service *service; + TimerState state, deserialized_state; + Unit *unit; + + Watch timer_watch; + + bool failure; }; +void timer_unit_notify(Unit *u, UnitActiveState new_state); + extern const UnitVTable timer_vtable; +const char *timer_state_to_string(TimerState i); +TimerState timer_state_from_string(const char *s); + +const char *timer_base_to_string(TimerBase i); +TimerBase timer_base_from_string(const char *s); + #endif