diff --git a/sapi/fastcgi/fastcgi.c b/sapi/fastcgi/fastcgi.c index 7a4dd1a621c..7fd65bdb347 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 ); }