diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2005-02-18 01:00:37 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2005-02-18 01:00:37 +0100 |
commit | fc979108b02f360128821c78cc9cba4a6ed71c28 (patch) | |
tree | 1bcc562dbbaa8ee2398afa681a855401d0b29c8f /server/scoreboard.c | |
parent | Belated CHANGES, must have conflicted last time I tried to commit. (diff) | |
download | apache2-fc979108b02f360128821c78cc9cba4a6ed71c28.tar.xz apache2-fc979108b02f360128821c78cc9cba4a6ed71c28.zip |
Fix some symbols which should -not- be exported, and decorate real_exit_code
with ap_ (this symbol must be exported.) If the others were desired to be
public, they should have been ap_xxx decorated.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@154216 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/scoreboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/scoreboard.c b/server/scoreboard.c index c7832fdcd4..6098837a4e 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -356,7 +356,7 @@ AP_DECLARE(void) ap_increment_counts(ap_sb_handle_t *sb, request_rec *r) ws->conn_bytes += r->bytes_sent; } -AP_DECLARE(int) find_child_by_pid(apr_proc_t *pid) +int find_child_by_pid(apr_proc_t *pid) { int i; int max_daemons_limit; |