manager: mention to which unit a SIGCHLD belongs

This commit is contained in:
Lennart Poettering 2010-04-07 03:19:00 +02:00
parent d89e521ead
commit 6c1a047834

View file

@ -1415,6 +1415,8 @@ static int manager_dispatch_sigchld(Manager *m) {
if (!(u = hashmap_remove(m->watch_pids, UINT32_TO_PTR(si.si_pid))))
continue;
log_debug("child %llu belongs to %s", (long long unsigned) si.si_pid, unit_id(u));
UNIT_VTABLE(u)->sigchld_event(u, si.si_pid, si.si_code, si.si_status);
}