From d749eb6896029099c08cda39e738a87468f76ffc Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 20 Feb 2006 17:17:51 +0000 Subject: [PATCH] When starting up a transfer, substitute the remember_children() SIGCHLD handler in place of the minimal one that socket.c enabled. --- clientserver.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/clientserver.c b/clientserver.c index 3b53958f..eb644560 100644 --- a/clientserver.c +++ b/clientserver.c @@ -63,6 +63,10 @@ struct chmod_mode_struct *daemon_chmod_modes; /* Length of lp_path() string when in daemon mode & not chrooted, else 0. */ unsigned int module_dirlen = 0; +#ifdef HAVE_SIGACTION +static struct sigaction sigact; +#endif + /** * Run a client connected to an rsyncd. The alternative to this * function for remote-shell connections is do_cmd(). @@ -796,6 +800,11 @@ int start_daemon(int f_in, int f_out) return -1; } +#ifdef HAVE_SIGACTION + sigact.sa_flags = SA_NOCLDSTOP; +#endif + SIGACTION(SIGCHLD, remember_children); + return rsync_module(f_in, f_out, i); } -- 2.34.1