diff options
author | George Wang <gwang@php.net> | 2014-07-10 14:59:25 -0400 |
---|---|---|
committer | George Wang <gwang@php.net> | 2014-07-10 15:14:06 -0400 |
commit | 01a1c3067c41ce1da5fc72690cf385bb1702619b (patch) | |
tree | 70f56a748f68d95667cd65ba7b13777c016dc136 /sapi/litespeed | |
parent | 1f46bec9cefc3f1981af9a8082f7dd5264ca3882 (diff) | |
download | php-git-01a1c3067c41ce1da5fc72690cf385bb1702619b.tar.gz |
Do not kill children process in pre-fork mode when parent process quit.
Diffstat (limited to 'sapi/litespeed')
-rw-r--r-- | sapi/litespeed/lsapilib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/litespeed/lsapilib.c b/sapi/litespeed/lsapilib.c index cdf9e882dc..31cdb5718f 100644 --- a/sapi/litespeed/lsapilib.c +++ b/sapi/litespeed/lsapilib.c @@ -2864,8 +2864,8 @@ static int lsapi_prefork_server_accept( lsapi_prefork_server * pServer, LSAPI_Re } } sigaction( SIGUSR1, &old_usr1, 0 ); - kill( -getpgrp(), SIGUSR1 ); - lsapi_all_children_must_die(); /* Sorry, children ;-) */ + //kill( -getpgrp(), SIGUSR1 ); + //lsapi_all_children_must_die(); /* Sorry, children ;-) */ return -1; } |