X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fscope.c;h=87983f6b1746aa9537b01bb0689afa5252d49dd8;hb=8bb310c3c6f5a52f2d483fd8dfb16ca66ecf7a5f;hp=a3c94794b1eb4740df9cad886f799ba4ed3991c8;hpb=718db96199eb307751264e4163555662c9a389fa;p=elogind.git diff --git a/src/core/scope.c b/src/core/scope.c index a3c94794b..87983f6b1 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -318,6 +318,20 @@ static int scope_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) { return unit_kill_common(u, who, signo, -1, -1, error); } +static int scope_get_timeout(Unit *u, uint64_t *timeout) { + Scope *s = SCOPE(u); + int r; + + if (!s->timer_event_source) + return 0; + + r = sd_event_source_get_time(s->timer_event_source, timeout); + if (r < 0) + return r; + + return 1; +} + static int scope_serialize(Unit *u, FILE *f, FDSet *fds) { Scope *s = SCOPE(u); @@ -478,6 +492,8 @@ const UnitVTable scope_vtable = { .kill = scope_kill, + .get_timeout = scope_get_timeout, + .serialize = scope_serialize, .deserialize_item = scope_deserialize_item, @@ -492,7 +508,6 @@ const UnitVTable scope_vtable = { .bus_interface = "org.freedesktop.systemd1.Scope", .bus_vtable = bus_scope_vtable, - .bus_changing_properties = bus_scope_changing_properties, .bus_set_property = bus_scope_set_property, .bus_commit_properties = bus_scope_commit_properties,