mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This fixes null dereference error when calling fpm_get_status() and one of the children is just being created. Closes GH-18662 Co-authored-by: Jakub Zelenka <bukka@php.net>
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/* (c) 2007,2008 Andrei Nigmatulin */
|
|
|
|
#ifndef FPM_REQUEST_H
|
|
#define FPM_REQUEST_H 1
|
|
|
|
/* hanging in accept() */
|
|
void fpm_request_accepting(void);
|
|
/* start reading fastcgi request from very first byte */
|
|
void fpm_request_reading_headers(void);
|
|
/* not a stage really but a point in the php code, where all request params have become known to sapi */
|
|
void fpm_request_info(void);
|
|
/* the script is executing */
|
|
void fpm_request_executing(void);
|
|
/* request ended: script response have been sent to web server */
|
|
void fpm_request_end(void);
|
|
/* request processed: cleaning current request */
|
|
void fpm_request_finished(void);
|
|
|
|
struct fpm_child_s;
|
|
struct timeval;
|
|
|
|
void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeout, int slowlog_timeout, int track_finished);
|
|
int fpm_request_is_idle(struct fpm_child_s *child);
|
|
const char *fpm_request_get_stage_name(int stage);
|
|
int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
|
|
|
|
enum fpm_request_stage_e {
|
|
FPM_REQUEST_CREATING,
|
|
FPM_REQUEST_ACCEPTING,
|
|
FPM_REQUEST_READING_HEADERS,
|
|
FPM_REQUEST_INFO,
|
|
FPM_REQUEST_EXECUTING,
|
|
FPM_REQUEST_END,
|
|
FPM_REQUEST_FINISHED
|
|
};
|
|
|
|
#endif
|