8000 Merge branch 'PHP-8.4' · php/php-src@b64daf9 · GitHub
[go: up one dir, main page]

Skip to content

Commit b64daf9

Browse files
committed
Merge branch 'PHP-8.4'
2 parents 3cb7d1b + 39efe8a commit b64daf9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

sapi/fpm/fpm/fpm_request.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "zlog.h"
2323

2424
static const char *requests_stages[] = {
25+
[FPM_REQUEST_CREATING] = "Creating",
2526
[FPM_REQUEST_ACCEPTING] = "Idle",
2627
[FPM_REQUEST_READING_HEADERS] = "Reading headers",
2728
[FPM_REQUEST_INFO] = "Getting request information",

sapi/fpm/fpm/fpm_request.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const char *fpm_request_get_stage_name(int stage);
2525
int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
2626

2727
enum fpm_request_stage_e {
28-
FPM_REQUEST_ACCEPTING = 1,
28+
FPM_REQUEST_CREATING,
29+
FPM_REQUEST_ACCEPTING,
2930
FPM_REQUEST_READING_HEADERS,
3031
FPM_REQUEST_INFO,
3132
FPM_REQUEST_EXECUTING,

0 commit comments

Comments
 (0)
0