mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
Fix FastCGI shutdown for MacOSX, it didn't want to die.
This commit is contained in:
parent
4dc55c14a4
commit
c053f12207
1 changed files with 3 additions and 0 deletions
|
@ -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 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue