diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-07-18 23:13:04 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-07-18 23:13:04 +0200 |
commit | 7f30a1383e2baec662242a2dae147fec149f05b7 (patch) | |
tree | cb8af0efe923de0b53ce4e3995a0ba2dc5c45155 /server/scoreboard.c | |
parent | Make scoreboard creation a hook. This allows management (diff) | |
download | apache2-7f30a1383e2baec662242a2dae147fec149f05b7.tar.xz apache2-7f30a1383e2baec662242a2dae147fec149f05b7.zip |
Fix ap_create_scoreboard fooness on Win32.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89609 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/scoreboard.c')
-rw-r--r-- | server/scoreboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/scoreboard.c b/server/scoreboard.c index dd4feb365f..e575e53423 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -171,8 +171,10 @@ apr_status_t ap_cleanup_scoreboard(void *d) { * * Create or reinit an existing scoreboard. The MPM can control whether * the scoreboard is shared across multiple processes or not + * + * ###: Is there any reason to export this symbol in the first place? */ -AP_DECLARE(void) ap_create_scoreboard(apr_pool_t *p, ap_scoreboard_e sb_type) +AP_DECLARE_NONSTD(void) ap_create_scoreboard(apr_pool_t *p, ap_scoreboard_e sb_type) { int running_gen = 0; if (ap_scoreboard_image) |