chiark / gitweb /
units: add missing target files
[elogind.git] / src / job.h
index 1ae97b75d02a0d7087e33bc32dd369e21252d6e4..9c685f1dad9c6f0d532b308cc2d23269b17eaadc 100644 (file)
--- a/src/job.h
+++ b/src/job.h
@@ -102,12 +102,17 @@ struct Job {
         JobType type;
         JobState state;
 
+        /* Note that this bus object is not ref counted here. */
+        DBusConnection *bus;
+        char *bus_client;
+
         bool installed:1;
         bool in_run_queue:1;
         bool matters_to_anchor:1;
         bool override:1;
         bool in_dbus_queue:1;
         bool sent_dbus_new_signal:1;
+        bool failed:1;
 };
 
 Job* job_new(Manager *m, JobType type, Unit *unit);