X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=snapshot.c;h=3e55075269e894477ac8d18ac22f2310477a6025;hp=fc7bb5f47898e1b42e0c8757a7586e160a3d5e28;hb=c43d20a0af915a2641e9645ba7f47f576f9075e3;hpb=5cb5a6ffc33667c93e9bc3572534dcaa684046e3 diff --git a/snapshot.c b/snapshot.c index fc7bb5f47..3e5507526 100644 --- a/snapshot.c +++ b/snapshot.c @@ -1,31 +1,24 @@ /*-*- Mode: C; c-basic-offset: 8 -*-*/ -#include "name.h" +#include "unit.h" #include "snapshot.h" -static NameActiveState snapshot_active_state(Name *n) { - return SNAPSHOT(n)->state == SNAPSHOT_DEAD ? NAME_INACTIVE : NAME_ACTIVE; -} - -static void snapshot_free_hook(Name *n) { - Snapshot *s = SNAPSHOT(n); +static void snapshot_done(Unit *u) { + Snapshot *s = SNAPSHOT(u); assert(s); /* Nothing here for now */ } -const NameVTable snapshot_vtable = { - .suffix = ".snapshot", - - .load = NULL, - .dump = NULL, +static UnitActiveState snapshot_active_state(Unit *u) { + return SNAPSHOT(u)->state == SNAPSHOT_DEAD ? UNIT_INACTIVE : UNIT_ACTIVE; +} - .start = NULL, - .stop = NULL, - .reload = NULL, +const UnitVTable snapshot_vtable = { + .suffix = ".snapshot", - .active_state = snapshot_active_state, + .done = snapshot_done, - .free_hook = snapshot_free_hook + .active_state = snapshot_active_state };