From 019c458afe5c99433c2a2c2f3280e1159bd10185 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Mon, 20 Jul 2015 10:00:52 -0400 Subject: 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 --- src/udev/udevd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/udev/udevd.c b/src/udev/udevd.c index b7a59fb43b..972b148030 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -953,10 +953,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); - continue; + break; } else if (WIFCONTINUED(status)) { log_info("worker ["PID_FMT"] continued", pid); - continue; + break; } else { log_warning("worker ["PID_FMT"] exit with status 0x%04x", pid, status); } -- cgit v1.2.3-54-g00ecf