X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Funit.h;h=79f15103baaf65cba3c1db22ebf9c1495d27927f;hp=2c5cacd9e31a4b681dbf3b48bff1e8d14cb6195f;hb=91f9dcaf9270fe465525638cc08bd94590273349;hpb=222ae6a8d7e27dd36552cb9574e63cbdfdf2d264 diff --git a/src/unit.h b/src/unit.h index 2c5cacd9e..79f15103b 100644 --- a/src/unit.h +++ b/src/unit.h @@ -168,7 +168,7 @@ struct Meta { CGroupBonding *cgroup_bondings; /* Per type list */ - LIST_FIELDS(Meta, units_per_type); + LIST_FIELDS(Meta, units_by_type); /* Load queue */ LIST_FIELDS(Meta, load_queue); @@ -210,6 +210,12 @@ struct Meta { /* Isolate OnFailure unit */ bool on_failure_isolate; + /* Ignore this unit when isolating */ + bool ignore_on_isolate; + + /* Ignore this unit when snapshotting */ + bool ignore_on_snapshot; + /* Did the last condition check suceed? */ bool condition_result; @@ -311,6 +317,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); + /* Check whether unit needs a daemon reload */ + bool (*need_daemon_reload)(Unit *u); + /* Reset failed state if we are in failed state */ void (*reset_failed)(Unit *u); @@ -361,15 +370,9 @@ struct UnitVTable { /* Instances make no sense for this type */ bool no_instances:1; - /* Exclude this type from snapshots */ - bool no_snapshots:1; - /* Exclude from automatic gc */ bool no_gc:1; - /* Exclude from stopping on isolation requests */ - bool no_isolate:1; - /* Show status updates on the console */ bool show_status:1; };