diff options
author | Paul Querna <pquerna@apache.org> | 2008-12-02 09:13:36 +0100 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2008-12-02 09:13:36 +0100 |
commit | a73acf02f615ee2e109eb3018289f9dfb87775f8 (patch) | |
tree | 0fc4f24b057d1e08f1054b71973e79f40dbae5b3 /server/scoreboard.c | |
parent | Don't do anything by defautl if we haven't been configured. (diff) | |
download | apache2-a73acf02f615ee2e109eb3018289f9dfb87775f8.tar.xz apache2-a73acf02f615ee2e109eb3018289f9dfb87775f8.zip |
API Cleanup in preperation for 2.4.x, make sure all exported functions or variables contain an ap_ prefix.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@722399 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/scoreboard.c')
-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 ae834dcd9c..43e0513f5f 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -368,7 +368,7 @@ AP_DECLARE(void) ap_increment_counts(ap_sb_handle_t *sb, request_rec *r) ws->conn_bytes += r->bytes_sent; } -int find_child_by_pid(apr_proc_t *pid) +AP_DECLARE(int) ap_find_child_by_pid(apr_proc_t *pid) { int i; int max_daemons_limit; |