diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2005-02-03 23:47:36 +0000 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2005-02-03 23:47:36 +0000 |
commit | aced7706e4e58f737c8b8e8c640ac8665b604652 (patch) | |
tree | 9a3ae5781954419292b7348c25371fcd9dd82a7b /include | |
parent | d399bad2ad2ed4f6104684926471412b7e4c32a5 (diff) | |
download | httpd-aced7706e4e58f737c8b8e8c640ac8665b604652.tar.gz |
Start keeping track of the amount of time taken to process a request again.
Results in the 'Req' field in mod_status no longer being bogus.
MFC: 149550
Reviewed by: jim, stas, geoff
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@151258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/scoreboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scoreboard.h b/include/scoreboard.h index beb75e513a..abd5171303 100644 --- a/include/scoreboard.h +++ b/include/scoreboard.h @@ -163,7 +163,7 @@ AP_DECLARE(int) find_child_by_pid(apr_proc_t *pid); AP_DECLARE(int) ap_update_child_status(ap_sb_handle_t *sbh, int status, request_rec *r); AP_DECLARE(int) ap_update_child_status_from_indexes(int child_num, int thread_num, int status, request_rec *r); -void ap_time_process_request(int child_num, int thread_num, int status); +void ap_time_process_request(ap_sb_handle_t *sbh, int status); AP_DECLARE(worker_score *) ap_get_scoreboard_worker(int x, int y); AP_DECLARE(process_score *) ap_get_scoreboard_process(int x); |