summaryrefslogtreecommitdiff
path: root/src/machine
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-04-29 19:23:23 +0200
committerLennart Poettering <lennart@poettering.net>2016-05-02 11:15:30 +0200
commit89c9030d319e118fa324fa5a1302ba53180b05b6 (patch)
tree3020eb7a0d26d5f8a8cfad092102de3f44b1dc28 /src/machine
parent5659958529d16f082a24d0c5b68699570b3eace3 (diff)
util: rework sigkill_wait() to not require pid_t pointer
Let's make sigkill_wait() take a normal pid_t, and add sigkill_waitp() that takes a pointer (which is useful for usage in _cleanup_), following the usual logic we have for this.
Diffstat (limited to 'src/machine')
-rw-r--r--src/machine/image-dbus.c2
-rw-r--r--src/machine/operation.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/image-dbus.c b/src/machine/image-dbus.c
index ca38f61dd3..db0ed03b69 100644
--- a/src/machine/image-dbus.c
+++ b/src/machine/image-dbus.c
@@ -166,7 +166,7 @@ int bus_image_method_clone(
r = operation_new(m, child, message, errno_pipe_fd[0]);
if (r < 0) {
- (void) sigkill_wait(&child);
+ (void) sigkill_wait(child);
return r;
}
diff --git a/src/machine/operation.c b/src/machine/operation.c
index 53e996b48f..e8564c29f7 100644
--- a/src/machine/operation.c
+++ b/src/machine/operation.c
@@ -104,7 +104,7 @@ Operation *operation_free(Operation *o) {
safe_close(o->errno_fd);
if (o->pid > 1)
- (void) sigkill_wait(&o->pid);
+ (void) sigkill_wait(o->pid);
sd_bus_message_unref(o->message);