X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Ftarget.c;h=5f64402475976643b1532ba9e9dd0c24cecd997c;hp=3fffa0d2f5ff0f4dfdb56845568618513dbfc8ce;hb=3164e3cbc50b8754c51f1fdeda7a7d6cedcc39b6;hpb=44a6b1b68029833893f6e9cee35aa27a974038f6 diff --git a/src/core/target.c b/src/core/target.c index 3fffa0d2f..5f6440247 100644 --- a/src/core/target.c +++ b/src/core/target.c @@ -19,13 +19,9 @@ along with systemd; If not, see . ***/ -#include -#include -#include #include "unit.h" #include "target.h" -#include "load-fragment.h" #include "log.h" #include "dbus-target.h" #include "special.h" @@ -107,7 +103,7 @@ static int target_load(Unit *u) { return 0; } -static int target_coldplug(Unit *u) { +static int target_coldplug(Unit *u, Hashmap *deferred_work) { Target *t = TARGET(u); assert(t); @@ -137,7 +133,7 @@ static int target_start(Unit *u) { assert(t->state == TARGET_DEAD); target_set_state(t, TARGET_ACTIVE); - return 0; + return 1; } static int target_stop(Unit *u) { @@ -147,7 +143,7 @@ static int target_stop(Unit *u) { assert(t->state == TARGET_ACTIVE); target_set_state(t, TARGET_DEAD); - return 0; + return 1; } static int target_serialize(Unit *u, FILE *f, FDSet *fds) { @@ -205,6 +201,7 @@ DEFINE_STRING_TABLE_LOOKUP(target_state, TargetState); const UnitVTable target_vtable = { .object_size = sizeof(Target), + .sections = "Unit\0" "Target\0" @@ -225,7 +222,7 @@ const UnitVTable target_vtable = { .sub_state_to_string = target_sub_state_to_string, .bus_interface = "org.freedesktop.systemd1.Target", - .bus_message_handler = bus_target_message_handler, + .bus_vtable = bus_target_vtable, .status_message_formats = { .finished_start_job = {