1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
7 This file is part of systemd.
9 Copyright 2010 Lennart Poettering
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
25 typedef struct Timer Timer;
29 typedef enum TimerState {
36 _TIMER_STATE_INVALID = -1
39 typedef enum TimerBase {
46 _TIMER_BASE_INVALID = -1
49 typedef struct TimerValue {
57 LIST_FIELDS(struct TimerValue, value);
63 LIST_HEAD(TimerValue, values);
66 TimerState state, deserialized_state;
74 void timer_unit_notify(Unit *u, UnitActiveState new_state);
76 extern const UnitVTable timer_vtable;
78 const char *timer_state_to_string(TimerState i);
79 TimerState timer_state_from_string(const char *s);
81 const char *timer_base_to_string(TimerBase i);
82 TimerBase timer_base_from_string(const char *s);