Skip to content

Commit

Permalink
Small CS fix
Browse files Browse the repository at this point in the history
The comments were incorrectly aligned. Fix this by dropping the
alignment and moving the comments before the declarations.

Closes GH-5975.
  • Loading branch information
Nyholm authored and nikic committed Aug 12, 2020
1 parent 824541d commit 3485ec4
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions sapi/fpm/fpm/fpm_request.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
#ifndef FPM_REQUEST_H
#define FPM_REQUEST_H 1

void fpm_request_accepting(); /* hanging in accept() */
void fpm_request_reading_headers(); /* start reading fastcgi request from very first byte */
void fpm_request_info(); /* not a stage really but a point in the php code, where all request params have become known to sapi */
void fpm_request_executing(); /* the script is executing */
void fpm_request_end(void); /* request ended: script response have been sent to web server */
void fpm_request_finished(); /* request processed: cleaning current request */
/* hanging in accept() */
void fpm_request_accepting();
/* start reading fastcgi request from very first byte */
void fpm_request_reading_headers();
/* not a stage really but a point in the php code, where all request params have become known to sapi */
void fpm_request_info();
/* the script is executing */
void fpm_request_executing();
/* request ended: script response have been sent to web server */
void fpm_request_end(void);
/* request processed: cleaning current request */
void fpm_request_finished();

struct fpm_child_s;
struct timeval;
Expand Down

0 comments on commit 3485ec4

Please sign in to comment.