diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:26:05 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:31:54 +0200 |
commit | c4e2ceae941d02de5574becbfd3b4db15de2eda3 (patch) | |
tree | c0bda809e0b860f5b0f8e66942dd486c17f2e309 /src/dbus-job.c | |
parent | d06dacd0020af7e31ff6089deff339b00ed979e3 (diff) |
dbus: follow standardized fdo PropertiesChanged signal spec
Diffstat (limited to 'src/dbus-job.c')
-rw-r--r-- | src/dbus-job.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/dbus-job.c b/src/dbus-job.c index 727e2ac6d5..0f76c7d843 100644 --- a/src/dbus-job.c +++ b/src/dbus-job.c @@ -28,7 +28,6 @@ #define BUS_JOB_INTERFACE \ " <interface name=\"org.freedesktop.systemd1.Job\">\n" \ " <method name=\"Cancel\"/>\n" \ - " <signal name=\"Changed\"/>\n" \ " <property name=\"Id\" type=\"u\" access=\"read\"/>\n" \ " <property name=\"Unit\" type=\"(so)\" access=\"read\"/>\n" \ " <property name=\"JobType\" type=\"s\" access=\"read\"/>\n" \ @@ -40,11 +39,16 @@ "<node>\n" \ BUS_JOB_INTERFACE \ BUS_PROPERTIES_INTERFACE \ + BUS_PEER_INTERFACE \ BUS_INTROSPECTABLE_INTERFACE \ "</node>\n" const char bus_job_interface[] = BUS_JOB_INTERFACE; +#define INVALIDATING_PROPERTIES \ + "State\0" \ + "\0" \ + static DEFINE_BUS_PROPERTY_APPEND_ENUM(bus_job_append_state, job_state, JobState); static DEFINE_BUS_PROPERTY_APPEND_ENUM(bus_job_append_type, job_type, JobType); @@ -187,10 +191,11 @@ void bus_job_send_change_signal(Job *j) { goto oom; if (j->sent_dbus_new_signal) { - /* Send a change signal */ + /* Send a properties changed signal */ - if (!(m = dbus_message_new_signal(p, "org.freedesktop.systemd1.Job", "Changed"))) + if (!(m = bus_properties_changed_new(p, "org.freedesktop.systemd1.Job", INVALIDATING_PROPERTIES))) goto oom; + } else { /* Send a new signal */ |