diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-03-21 03:25:28 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-21 03:43:46 +0100 |
commit | 06642d1795382a4849aa750ee54238f91e2f3126 (patch) | |
tree | 6f541211f90f2ae2be42f442ec77ae3571aa5ebd /src/core/dbus-timer.c | |
parent | 155e8b9adce60eff5aa5cdeb16fac7b6530e3e3f (diff) |
timer: add timer persistance (aka anacron-like behaviour)
Diffstat (limited to 'src/core/dbus-timer.c')
-rw-r--r-- | src/core/dbus-timer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/dbus-timer.c b/src/core/dbus-timer.c index 9d54b948c0..f7af699c56 100644 --- a/src/core/dbus-timer.c +++ b/src/core/dbus-timer.c @@ -144,5 +144,6 @@ const sd_bus_vtable bus_timer_vtable[] = { SD_BUS_PROPERTY("NextElapseUSecMonotonic", "t", bus_property_get_usec, offsetof(Timer, next_elapse_monotonic), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_PROPERTY("Result", "s", property_get_result, offsetof(Timer, result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE), SD_BUS_PROPERTY("AccuracyUSec", "t", bus_property_get_usec, offsetof(Timer, accuracy_usec), SD_BUS_VTABLE_PROPERTY_CONST), + SD_BUS_PROPERTY("Persistent", "b", bus_property_get_bool, offsetof(Timer, persistent), SD_BUS_VTABLE_PROPERTY_CONST), SD_BUS_VTABLE_END }; |