Fix FastCGI shutdown for MacOSX, it didn't want to die.

This commit is contained in:
Ben Mansell 2001-07-02 12:37:47 +00:00
parent 4dc55c14a4
commit c053f12207

View file

@ -312,6 +312,9 @@ void fastcgi_cleanup(int signal)
/* Kill all the processes in our process group */ /* Kill all the processes in our process group */
kill( -pgroup, SIGTERM ); kill( -pgroup, SIGTERM );
/* We should exit at this point, but MacOSX doesn't seem to */
exit( 0 );
} }