mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-03-01 08:12:23 +07:00
udevd: don't unref worker objects on SIGSTOP/SIGCONT
We should not be receiving these anyway, but let's be correct. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
parent
210f90af1d
commit
9b01b56629
@ -878,8 +878,10 @@ static void handle_signal(struct udev *udev, int signo) {
|
||||
pid, WTERMSIG(status), strsignal(WTERMSIG(status)));
|
||||
} else if (WIFSTOPPED(status)) {
|
||||
log_info("worker ["PID_FMT"] stopped", pid);
|
||||
break;
|
||||
} else if (WIFCONTINUED(status)) {
|
||||
log_info("worker ["PID_FMT"] continued", pid);
|
||||
break;
|
||||
} else {
|
||||
log_warning("worker ["PID_FMT"] exit with status 0x%04x", pid, status);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user