Skip to content

Commit

Permalink
Call SIGACTION() instead of signal().
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayne Davison committed Feb 2, 2006
1 parent 90b13cf commit 2b28968
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
8 changes: 6 additions & 2 deletions cleanup.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ extern int keep_partial;
extern int log_got_error;
extern char *partial_dir;

#if defined HAVE_SIGACTION && defined HAVE_SIGPROCMASK
static struct sigaction sigact;
#endif

/**
* Close all open sockets and files, allowing a (somewhat) graceful
* shutdown() of socket connections. This eliminates the abortive
Expand Down Expand Up @@ -94,8 +98,8 @@ void _exit_cleanup(int code, const char *file, int line)
}
inside_cleanup++;

signal(SIGUSR1, SIG_IGN);
signal(SIGUSR2, SIG_IGN);
SIGACTION(SIGUSR1, SIG_IGN);
SIGACTION(SIGUSR2, SIG_IGN);

if (verbose > 3) {
rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
Expand Down
12 changes: 11 additions & 1 deletion socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
extern char *bind_address;
extern int default_af_hint;

#if defined HAVE_SIGACTION && defined HAVE_SIGPROCMASK
static struct sigaction sigact;
#endif

/**
* Establish a proxy connection on an open socket to a web proxy by
* using the CONNECT method. If proxy_user and proxy_pass are not NULL,
Expand Down Expand Up @@ -433,7 +437,9 @@ static RETSIGTYPE sigchld_handler(UNUSED(int val))
#ifdef WNOHANG
while (waitpid(-1, NULL, WNOHANG) > 0) {}
#endif
#if !defined HAVE_SIGACTION && !defined HAVE_SIGPROCMASK
signal(SIGCHLD, sigchld_handler);
#endif
}


Expand All @@ -442,6 +448,10 @@ void start_accept_loop(int port, int (*fn)(int, int))
fd_set deffds;
int *sp, maxfd, i;

#if defined HAVE_SIGACTION && defined HAVE_SIGPROCMASK
sigact.sa_flags = SA_NOCLDSTOP;
#endif

/* open an incoming socket */
sp = open_socket_in(SOCK_STREAM, port, bind_address, default_af_hint);
if (sp == NULL)
Expand Down Expand Up @@ -499,7 +509,7 @@ void start_accept_loop(int port, int (*fn)(int, int))
if (fd < 0)
continue;

signal(SIGCHLD, sigchld_handler);
SIGACTION(SIGCHLD, sigchld_handler);

if ((pid = fork()) == 0) {
int ret;
Expand Down

0 comments on commit 2b28968

Please sign in to comment.