From: Mike Yuan Date: Sun, 26 Oct 2025 20:26:58 +0000 (+0100) Subject: core/manager: rearrange several struct fields X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F39562%2Fhead;p=thirdparty%2Fsystemd.git core/manager: rearrange several struct fields --- diff --git a/src/core/manager.h b/src/core/manager.h index 3197ca9f18f..b7ee766b05d 100644 --- a/src/core/manager.h +++ b/src/core/manager.h @@ -321,8 +321,6 @@ typedef struct Manager { Hashmap *watch_bus; /* D-Bus names => Unit object n:1 */ - bool send_reloading_done; - uint32_t current_job_id; /* Data specific to the Automount subsystem */ @@ -330,8 +328,8 @@ typedef struct Manager { /* Data specific to the cgroup subsystem */ Hashmap *cgroup_unit; - CGroupMask cgroup_supported; char *cgroup_root; + CGroupMask cgroup_supported; /* Notifications from cgroups, when the unified hierarchy is used is done via inotify. */ int cgroup_inotify_fd; @@ -364,6 +362,8 @@ typedef struct Manager { bool dispatching_load_queue; int may_dispatch_stop_notify_queue; /* tristate */ + bool send_reloading_done; + /* Have we already sent out the READY=1 notification? */ bool ready_sent;