X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Funit.h;h=79f15103baaf65cba3c1db22ebf9c1495d27927f;hb=41e4d6e9ace4f3b717af3c0419b69a2ac7935116;hp=43bbe6757363ec18881d95c7db0a121d086a3a7b;hpb=c8f4d7642b743c79328e10e8fb2d9b58e9f6b999;p=elogind.git diff --git a/src/unit.h b/src/unit.h index 43bbe6757..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); @@ -213,6 +213,9 @@ struct Meta { /* 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; @@ -314,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); @@ -364,9 +370,6 @@ 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;