diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-11 22:37:10 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-11 22:37:10 +0200 |
commit | 7fab9d01b5940a67ca070754361afb9dfaa520f2 (patch) | |
tree | 4c1c02f2a01fb255848846edb66c48dc5caf6ba1 /src/manager.h | |
parent | e364ad0628b5930a671ae5be863b960f4bd748a8 (diff) |
pahole: rearrange structs to make them smaller
Diffstat (limited to 'src/manager.h')
-rw-r--r-- | src/manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/manager.h b/src/manager.h index c1f787f854..ef40352d59 100644 --- a/src/manager.h +++ b/src/manager.h @@ -87,8 +87,6 @@ struct Watch { #include "path-lookup.h" struct Manager { - uint32_t current_job_id; - /* Note that the set of units we know of is allowed to be * incosistent. However the subset of it that is loaded may * not, and the list of jobs may neither. */ @@ -170,6 +168,8 @@ struct Manager { int32_t name_data_slot; int32_t subscribed_data_slot; + uint32_t current_job_id; + /* Data specific to the Automount subsystem */ int dev_autofs_fd; @@ -198,11 +198,11 @@ struct Manager { bool dispatching_run_queue:1; bool dispatching_dbus_queue:1; - int n_deserializing; - bool show_status; bool confirm_spawn; bool sysv_console; + + int n_deserializing; }; int manager_new(ManagerRunningAs running_as, Manager **m); |