martin 99/10/07 14:58:31
Modified: src/lib/apr/misc/unix start.c
Log:
Warning: even with HAVE_PTHREAD_SIGMASK defined,
no pthread function should be called for the prefork mpm
Revision Changes Path
1.9 +3 -0 apache-2.0/src/lib/apr/misc/unix/start.c
Index: start.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/lib/apr/misc/unix/start.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- start.c 1999/10/04 16:37:01 1.8
+++ start.c 1999/10/07 21:58:29 1.9
@@ -203,6 +203,9 @@
sigset_t sigset;
sigfillset(&sigset);
+ /*@@@ FIXME: This should *NOT* be called for the prefork MPM,
+ * even if HAVE_PTHREAD_SIGMASK is defined!!!! MnKr
+ */
pthread_sigmask(SIG_BLOCK, &sigset, NULL);
#endif
return APR_SUCCESS;