diff options
author | Jeff Trawick <trawick@apache.org> | 2009-03-25 12:33:40 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2009-03-25 12:33:40 +0100 |
commit | 8c7348ef59fe860de872badc2ab758acec906989 (patch) | |
tree | 48c4ac43889958c47d9f2769d8cea1886e339d5a /include/mpm_common.h | |
parent | fix inconsistent defs of ap_mpm_note_child_killed() (diff) | |
download | apache2-8c7348ef59fe860de872badc2ab758acec906989.tar.xz apache2-8c7348ef59fe860de872badc2ab758acec906989.zip |
dangling semis lead to warnings with Sun Studio
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758229 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mpm_common.h')
-rw-r--r-- | include/mpm_common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h index 5f50f07066..f1123a5b08 100644 --- a/include/mpm_common.h +++ b/include/mpm_common.h @@ -376,20 +376,20 @@ AP_DECLARE(int) ap_sys_privileges_handlers(int inc); AP_DECLARE_HOOK(int, drop_privileges, (apr_pool_t * pchild, server_rec * s)) /* pass control to the MPM */ -AP_DECLARE_HOOK(int, mpm, (apr_pool_t *pconf, apr_pool_t *plog, server_rec *s)); +AP_DECLARE_HOOK(int, mpm, (apr_pool_t *pconf, apr_pool_t *plog, server_rec *s)) /* implement the mpm query function */ -AP_DECLARE_HOOK(apr_status_t, mpm_query, (int query_code, int *result)); +AP_DECLARE_HOOK(apr_status_t, mpm_query, (int query_code, int *result)) /* get pid of child by index */ -AP_DECLARE_HOOK(pid_t, mpm_get_child_pid, (int childnum)); +AP_DECLARE_HOOK(pid_t, mpm_get_child_pid, (int childnum)) /* child specified by index has been killed */ -AP_DECLARE_HOOK(apr_status_t, mpm_note_child_killed, (int childnum)); +AP_DECLARE_HOOK(apr_status_t, mpm_note_child_killed, (int childnum)) /* register the specified callback */ AP_DECLARE_HOOK(apr_status_t, mpm_register_timed_callback, - (apr_time_t t, ap_mpm_callback_fn_t *cbfn, void *baton)); + (apr_time_t t, ap_mpm_callback_fn_t *cbfn, void *baton)) #ifdef __cplusplus } |