mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
manager: don't show PID for incoming signals if it is 0
This commit is contained in:
parent
100fd5676c
commit
67370238b5
6
TODO
6
TODO
@ -21,13 +21,13 @@ F15:
|
||||
|
||||
* fix alsa mixer restore to not print error when no config is stored
|
||||
|
||||
* don't trim empty cgroups
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=678555
|
||||
|
||||
* disable most systemctl verbs in chroot()s
|
||||
|
||||
Features:
|
||||
|
||||
* don't trim empty cgroups
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=678555
|
||||
|
||||
* write blog stories about:
|
||||
- chroot, nspawn and friends
|
||||
- the blame game: systemd-analyze
|
||||
|
@ -2059,8 +2059,6 @@ static int manager_process_signal_fd(Manager *m) {
|
||||
assert(m);
|
||||
|
||||
for (;;) {
|
||||
char *p = NULL;
|
||||
|
||||
if ((n = read(m->signal_watch.fd, &sfsi, sizeof(sfsi))) != sizeof(sfsi)) {
|
||||
|
||||
if (n >= 0)
|
||||
@ -2072,13 +2070,17 @@ static int manager_process_signal_fd(Manager *m) {
|
||||
return -errno;
|
||||
}
|
||||
|
||||
if (sfsi.ssi_pid > 0)
|
||||
if (sfsi.ssi_pid > 0) {
|
||||
char *p = NULL;
|
||||
|
||||
get_process_name(sfsi.ssi_pid, &p);
|
||||
|
||||
log_debug("Received SIG%s from PID %lu (%s)",
|
||||
strna(signal_to_string(sfsi.ssi_signo)),
|
||||
(unsigned long) sfsi.ssi_pid, strna(p));
|
||||
free(p);
|
||||
log_debug("Received SIG%s from PID %lu (%s).",
|
||||
strna(signal_to_string(sfsi.ssi_signo)),
|
||||
(unsigned long) sfsi.ssi_pid, strna(p));
|
||||
free(p);
|
||||
} else
|
||||
log_debug("Received SIG%s.", strna(signal_to_string(sfsi.ssi_signo)));
|
||||
|
||||
switch (sfsi.ssi_signo) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user