X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Funit.h;h=f1171270f8adcc5721018a513802a0d9dde727db;hb=294d81f124568983323a53f40bfbaa371f0da077;hp=cfad3ca53ba268883ffa3176c81c0cfea52dd13a;hpb=faf919f1ebebdfc13f769bb6585e64e7ad4b301b;p=elogind.git diff --git a/src/unit.h b/src/unit.h index cfad3ca53..f1171270f 100644 --- a/src/unit.h +++ b/src/unit.h @@ -176,6 +176,9 @@ struct Meta { /* GC queue */ LIST_FIELDS(Meta, gc_queue); + /* This follows another unit in state */ + Unit *following; + /* Used during GC sweeps */ unsigned gc_marker; @@ -290,6 +293,9 @@ struct UnitVTable { void (*sigchld_event)(Unit *u, pid_t pid, int code, int status); void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w); + /* Reset maintenance state if we are in maintainance state */ + void (*reset_maintenance)(Unit *u); + /* Called whenever any of the cgroups this unit watches for * ran empty */ void (*cgroup_notify_empty)(Unit *u); @@ -467,6 +473,8 @@ void unit_status_printf(Unit *u, const char *format, ...); bool unit_need_daemon_reload(Unit *u); +void unit_reset_maintenance(Unit *u); + const char *unit_type_to_string(UnitType i); UnitType unit_type_from_string(const char *s);