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 /job.h | |
parent | ab8ea24411df95861c53aeee1dd91e765331f717 (diff) |
dbus: send out signals when units/jobs come, go and change
Diffstat (limited to 'job.h')
-rw-r--r-- | job.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -94,9 +94,12 @@ struct Job { bool in_run_queue:1; bool matters_to_anchor:1; bool forced:1; + bool in_dbus_queue:1; + bool sent_dbus_new_signal:1; LIST_FIELDS(Job, transaction); LIST_FIELDS(Job, run_queue); + LIST_FIELDS(Job, dbus_queue); LIST_HEAD(JobDependency, subject_list); LIST_HEAD(JobDependency, object_list); @@ -126,7 +129,9 @@ bool job_type_is_conflicting(JobType a, JobType b); bool job_is_runnable(Job *j); -void job_schedule_run(Job *j); +void job_add_to_run_queue(Job *j); +void job_add_to_dbus_queue(Job *j); + int job_run_and_invalidate(Job *j); int job_finish_and_invalidate(Job *j, bool success); |