diff options
author | Ben Mansell <joosters@php.net> | 2001-07-02 12:37:47 +0000 |
---|---|---|
committer | Ben Mansell <joosters@php.net> | 2001-07-02 12:37:47 +0000 |
commit | c053f12207ca77a391e4c2474a1fc0da15bc385c (patch) | |
tree | e670b9e1f1fb88647ffdd4073bcf8fa600b0e85a /sapi | |
parent | 4dc55c14a43d0b5325d48ed3d7f8bc51a8720f7f (diff) | |
download | php-git-c053f12207ca77a391e4c2474a1fc0da15bc385c.tar.gz |
Fix FastCGI shutdown for MacOSX, it didn't want to die.
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/fastcgi/fastcgi.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 ); } |