From: Ben Mansell Date: Mon, 2 Jul 2001 12:37:47 +0000 (+0000) Subject: Fix FastCGI shutdown for MacOSX, it didn't want to die. X-Git-Tag: PRE_TSRM_MERGE_PATCH~292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c053f12207ca77a391e4c2474a1fc0da15bc385c;p=php Fix FastCGI shutdown for MacOSX, it didn't want to die. --- diff --git a/sapi/fastcgi/fastcgi.c b/sapi/fastcgi/fastcgi.c index 7a4dd1a621..7fd65bdb34 100644 --- a/sapi/fastcgi/fastcgi.c +++ b/sapi/fastcgi/fastcgi.c @@ -312,6 +312,9 @@ void fastcgi_cleanup(int signal) /* Kill all the processes in our process group */ kill( -pgroup, SIGTERM ); + + /* We should exit at this point, but MacOSX doesn't seem to */ + exit( 0 ); }