mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.4'
This commit is contained in:
commit
b64daf9b3f
2 changed files with 3 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
||||||
#include "zlog.h"
|
#include "zlog.h"
|
||||||
|
|
||||||
static const char *requests_stages[] = {
|
static const char *requests_stages[] = {
|
||||||
|
[FPM_REQUEST_CREATING] = "Creating",
|
||||||
[FPM_REQUEST_ACCEPTING] = "Idle",
|
[FPM_REQUEST_ACCEPTING] = "Idle",
|
||||||
[FPM_REQUEST_READING_HEADERS] = "Reading headers",
|
[FPM_REQUEST_READING_HEADERS] = "Reading headers",
|
||||||
[FPM_REQUEST_INFO] = "Getting request information",
|
[FPM_REQUEST_INFO] = "Getting request information",
|
||||||
|
|
|
@ -25,7 +25,8 @@ const char *fpm_request_get_stage_name(int stage);
|
||||||
int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
|
int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
|
||||||
|
|
||||||
enum fpm_request_stage_e {
|
enum fpm_request_stage_e {
|
||||||
FPM_REQUEST_ACCEPTING = 1,
|
FPM_REQUEST_CREATING,
|
||||||
|
FPM_REQUEST_ACCEPTING,
|
||||||
FPM_REQUEST_READING_HEADERS,
|
FPM_REQUEST_READING_HEADERS,
|
||||||
FPM_REQUEST_INFO,
|
FPM_REQUEST_INFO,
|
||||||
FPM_REQUEST_EXECUTING,
|
FPM_REQUEST_EXECUTING,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue