this fixes that. Reported by Dave Colasurdo <davecola@us.ibm.com>.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83904
13f79535-47bb-0310-9956-
ffa450edef68
/*done with init critical section */
/* All threads should mask signals out, accoring to sigwait(2) man page */
- sigemptyset(&sig_mask);
+ sigfillset(&sig_mask);
if (pthread_sigmask(SIG_SETMASK, &sig_mask, NULL) != 0) {
ap_log_error(APLOG_MARK, APLOG_ALERT, server_conf, "pthread_sigmask");
/*done with init critical section */
/* All threads should mask signals out, accoring to sigwait(2) man page */
- sigemptyset(&sig_mask);
+ sigfillset(&sig_mask);
if (pthread_sigmask(SIG_SETMASK, &sig_mask, NULL) != 0) {
ap_log_error(APLOG_MARK, APLOG_ALERT, server_conf, "pthread_sigmask");