manoj       99/09/17 16:26:54

  Modified:    pthreads/src/main http_main.c
  Log:
  Instead of blocking all signals in child_main, we were unblocking them;
  this fixes that. Reported by Dave Colasurdo <[EMAIL PROTECTED]>.
  
  Revision  Changes    Path
  1.98      +1 -1      apache-apr/pthreads/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-apr/pthreads/src/main/http_main.c,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -d -u -r1.97 -r1.98
  --- http_main.c       1999/08/19 20:52:35     1.97
  +++ http_main.c       1999/09/17 23:26:52     1.98
  @@ -1864,7 +1864,7 @@
       /*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");
  
  
  

Reply via email to