You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Bill Stoddard <st...@raleigh.ibm.com> on 2000/06/26 22:20:54 UTC

Redundant ap_signal(SIGTERM) call in mpmt_pthread make_child?

make_child() calls ap_signal(SIGTERM, just_die) right before calling child_main().
child_main (the main thread) does an explicit sigwait to wait for SIGTERM after it is done
initializing the child. Is the call to ap_signal() in make_child() really necessary?

Bill