From f873ac8727b666482f53aef70d47e7249d864cc0 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sun, 26 Oct 2025 21:26:58 +0100 Subject: [PATCH] core/manager: rearrange several struct fields --- src/core/manager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.47.3