diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-02-05 00:38:41 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-02-05 00:38:41 +0100 |
commit | c1e1601e8c6cace85b19a0eebe50076e5d119688 (patch) | |
tree | 26fe0f48cbcdbfeb21abfef75c1de3ee37e9598e /unit.h | |
parent | ab8ea24411df95861c53aeee1dd91e765331f717 (diff) |
dbus: send out signals when units/jobs come, go and change
Diffstat (limited to 'unit.h')
-rw-r--r-- | unit.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -131,6 +131,8 @@ struct Meta { Job *job; bool in_load_queue:1; + bool in_dbus_queue:1; + bool sent_dbus_new_signal:1; /* If we go down, pull down everything that depends on us, too */ bool recursive_stop; @@ -146,6 +148,9 @@ struct Meta { /* Per type list */ LIST_FIELDS(Meta, units_per_type); + + /* D-Bus queue */ + LIST_FIELDS(Meta, dbus_queue); }; #include "service.h" @@ -243,6 +248,7 @@ int unit_choose_id(Unit *u, const char *name); int unit_set_description(Unit *u, const char *description); void unit_add_to_load_queue(Unit *u); +void unit_add_to_dbus_queue(Unit *u); int unit_merge(Unit *u, Unit *other); |