From: Ryan Bloom Date: Wed, 21 Jun 2000 23:04:02 +0000 (+0000) Subject: stop defining ap_scoreboard_fname multiple times in Mpmt_pthread MPM. X-Git-Tag: APACHE_2_0_ALPHA_5~272 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8089463cf0c4ade3dcb4a5f214aeaa60a8d8ad27;p=apache stop defining ap_scoreboard_fname multiple times in Mpmt_pthread MPM. Submitted by: Victor J. Orlikowski Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85651 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/mpmt_pthread/scoreboard.c b/server/mpm/mpmt_pthread/scoreboard.c index 6314b65d8e..6513a6292a 100644 --- a/server/mpm/mpmt_pthread/scoreboard.c +++ b/server/mpm/mpmt_pthread/scoreboard.c @@ -75,7 +75,6 @@ scoreboard *ap_scoreboard_image = NULL; new_scoreboard *ap_new_scoreboard_image = NULL; static int maintain_connection_status = 1; -API_VAR_EXPORT const char *ap_scoreboard_fname; /***************************************************************** * * Dealing with the scoreboard... a lot of these variables are global diff --git a/server/mpm/mpmt_pthread/scoreboard.h b/server/mpm/mpmt_pthread/scoreboard.h index a1a9f46843..6c910c4af3 100644 --- a/server/mpm/mpmt_pthread/scoreboard.h +++ b/server/mpm/mpmt_pthread/scoreboard.h @@ -226,6 +226,7 @@ void ap_time_process_request(int child_num, int thread_num, int status); API_VAR_EXPORT extern scoreboard *ap_scoreboard_image; +API_VAR_EXPORT extern const char *ap_scoreboard_fname; API_VAR_EXPORT extern ap_generation_t volatile ap_my_generation;