]> git.pld-linux.org Git - packages/php.git/blob - php-fcgi-graceful.patch
This commit was manufactured by cvs2git to create branch 'DEVEL'.
[packages/php.git] / php-fcgi-graceful.patch
1 Related links:
2
3 http://bugs.php.net/bug.php?id=43224 this patch
4
5 http://bugs.php.net/bug.php?id=41593
6 http://bugs.php.net/bug.php?id=36158
7 http://php-fpm.anight.org/
8
9 test script too:
10 <?php
11 echo php_sapi_name(), ' running ', PHP_VERSION, "<br>\n";
12 $i = 0;
13 while ($i < 35) {
14     echo (++$i), "<br>\n";
15     flush();
16     sleep(1);
17 }
18 echo "end!<br>\n";
19 ?>
20
21 --- php-5.4.0alpha2/sapi/cgi/cgi_main.c~        2011-08-05 13:26:14.000000000 +0300
22 +++ php-5.4.0alpha2/sapi/cgi/cgi_main.c 2011-08-05 13:57:17.564708456 +0300
23 @@ -101,6 +101,9 @@
24   */
25  static int parent = 1;
26  
27 +/* Socket we are listening on incoming connections */
28 +static int fcgi_fd = 0;
29 +
30  /**
31   * Process group
32   */
33 @@ -1221,6 +1224,21 @@
34         exit(0);
35  }
36  
37 +/**
38 + * Graceful shutdown. Close listening sockets.
39 + */
40 +void fastcgi_graceful_shutdown(int signal)
41 +{
42 +#ifdef DEBUG_FASTCGI
43 +       fprintf(stderr, "FastCGI graceful shutdown, pid %d\n", getpid());
44 +#endif
45 +
46 +       /* Close the listening socket so new processes can reuse the same port */
47 +       closesocket(fcgi_fd);
48 +       fcgi_fd = 0;
49 +}
50 +
51 +
52  PHP_INI_BEGIN()
53         STD_PHP_INI_ENTRY("cgi.rfc2616_headers",     "0",  PHP_INI_ALL,    OnUpdateBool,   rfc2616_headers, php_cgi_globals_struct, php_cgi_globals)
54         STD_PHP_INI_ENTRY("cgi.nph",                 "0",  PHP_INI_ALL,    OnUpdateBool,   nph, php_cgi_globals_struct, php_cgi_globals)
55 @@ -1764,7 +1764,6 @@
56         int requests = 0;
57         int fastcgi;
58         char *bindpath = NULL;
59 -       int fcgi_fd = 0;
60         fcgi_request *request = NULL;
61         int repeats = 1;
62         int benchmark = 0;
63 @@ -1579,9 +1596,13 @@
64                                         parent = 0;
65  
66                                         /* don't catch our signals */
67 -                                       sigaction(SIGTERM, &old_term, 0);
68                                         sigaction(SIGQUIT, &old_quit, 0);
69                                         sigaction(SIGINT,  &old_int,  0);
70 +
71 +                                       /* call graceful shutdown handler for SIGTERM */
72 +                                       act.sa_flags = 0;
73 +                                       act.sa_handler = fastcgi_graceful_shutdown;
74 +                                       sigaction(SIGTERM, &act, &old_term);
75                                         break;
76                                 case -1:
77                                         perror("php (pre-forking)");
This page took 0.036788 seconds and 3 git commands to generate.