diff options
author | Jeff Trawick <trawick@apache.org> | 2011-04-06 21:46:09 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2011-04-06 21:46:09 +0200 |
commit | d16e497e0f61e207eaeb823bd11e026341b035ca (patch) | |
tree | 772eb3e112feda554518da1a2619e096eff26e06 /server/mpm | |
parent | Abort if the MPM is changed across restart. (diff) | |
download | apache2-d16e497e0f61e207eaeb823bd11e026341b035ca.tar.xz apache2-d16e497e0f61e207eaeb823bd11e026341b035ca.zip |
cleanups to function signatures, prototypes, visibility
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1089600 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm')
-rw-r--r-- | server/mpm/winnt/child.c | 2 | ||||
-rw-r--r-- | server/mpm/winnt/mpm_winnt.c | 12 | ||||
-rw-r--r-- | server/mpm/winnt/mpm_winnt.h | 4 | ||||
-rw-r--r-- | server/mpm/winnt/service.c | 4 |
4 files changed, 13 insertions, 9 deletions
diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 6fc31e8c3e..7c3f6a80b5 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -849,7 +849,7 @@ static void cleanup_thread(HANDLE *handles, int *thread_cnt, * monitors the child process for maintenance and shutdown * events. */ -static void create_listener_thread() +static void create_listener_thread(void) { unsigned tid; int num_listeners = 0; diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index eee66cd191..1812e63613 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -114,7 +114,7 @@ AP_DECLARE(apr_array_header_t *) ap_get_status_table(apr_pool_t *p) * Command processors */ -static const char *set_threads_per_child (cmd_parms *cmd, void *dummy, char *arg) +static const char *set_threads_per_child (cmd_parms *cmd, void *dummy, const char *arg) { const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); if (err != NULL) { @@ -258,9 +258,9 @@ AP_DECLARE(void) ap_signal_parent(ap_signal_parent_e type) * start mutex [signal from the parent to begin accept()] * scoreboard shm handle [to recreate the ap_scoreboard] */ -void get_handles_from_parent(server_rec *s, HANDLE *child_exit_event, - apr_proc_mutex_t **child_start_mutex, - apr_shm_t **scoreboard_shm) +static void get_handles_from_parent(server_rec *s, HANDLE *child_exit_event, + apr_proc_mutex_t **child_start_mutex, + apr_shm_t **scoreboard_shm) { HANDLE hScore; HANDLE ready_event; @@ -423,7 +423,7 @@ static int send_handles_to_child(apr_pool_t *p, * exclusively in the child process, receives them from the parent and * makes them availeble in the child. */ -void get_listeners_from_parent(server_rec *s) +static void get_listeners_from_parent(server_rec *s) { WSAPROTOCOL_INFO WSAProtocolInfo; ap_listen_rec *lr; @@ -962,7 +962,7 @@ static int inst_argc; static const char * const *inst_argv; static const char *service_name = NULL; -void winnt_rewrite_args(process_rec *process) +static void winnt_rewrite_args(process_rec *process) { /* Handle the following SCM aspects in this phase: * diff --git a/server/mpm/winnt/mpm_winnt.h b/server/mpm/winnt/mpm_winnt.h index efc1b61c82..32637c11b6 100644 --- a/server/mpm/winnt/mpm_winnt.h +++ b/server/mpm/winnt/mpm_winnt.h @@ -89,5 +89,9 @@ typedef enum { AP_DECLARE(void) ap_signal_parent(ap_signal_parent_e type); void hold_console_open_on_error(void); + +/* From child.c: */ +void child_main(apr_pool_t *pconf); + #endif /* APACHE_MPM_WINNT_H */ /** @} */ diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index ffe736d658..808bfeacf1 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -426,7 +426,7 @@ static void __stdcall service_nt_main_fn(DWORD argc, LPTSTR *argv) } -DWORD WINAPI service_nt_dispatch_thread(LPVOID nada) +static DWORD WINAPI service_nt_dispatch_thread(LPVOID nada) { apr_status_t rv = APR_SUCCESS; @@ -546,7 +546,7 @@ apr_status_t mpm_merge_service_args(apr_pool_t *p, } -void service_stopped(void) +static void service_stopped(void) { /* Still have a thread & window to clean up, so signal now */ if (globdat.service_thread) |