diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-19 03:04:04 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-19 03:04:04 +0200 |
commit | 5e8d1c9a9f15b7453474dc4879bdb4021c3f50a1 (patch) | |
tree | ff305b07ce88ea21de22fc86b53c246e40d857c1 /src/manager.h | |
parent | f9704703f35a281d9f8fa12018bd396b2be30d36 (diff) |
dbus: to make sure that systemd stays controllable during early bootup, register our services on our own micro usb server in addition to the bus
Diffstat (limited to 'src/manager.h')
-rw-r--r-- | src/manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/manager.h b/src/manager.h index 6c3434e5a0..2a04bc7ddd 100644 --- a/src/manager.h +++ b/src/manager.h @@ -154,6 +154,9 @@ struct Manager { /* Data specific to the D-Bus subsystem */ DBusConnection *api_bus, *system_bus; + DBusServer *private_bus; + Set *bus_connections, *bus_connections_for_dispatch; + Set *subscribed; DBusMessage *queued_message; /* This is used during reloading: * before the reload we queue the @@ -188,9 +191,6 @@ struct Manager { bool dispatching_run_queue:1; bool dispatching_dbus_queue:1; - bool request_api_bus_dispatch:1; - bool request_system_bus_dispatch:1; - bool utmp_reboot_written:1; bool confirm_spawn:1; |