summaryrefslogtreecommitdiff
path: root/server/mpm/experimental/threadpool/threadpool.c
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2002-06-07 14:08:05 +0000
committerJim Jagielski <jim@apache.org>2002-06-07 14:08:05 +0000
commitcb3975a65b990f99a6e894e3229d49b239a9429c (patch)
tree655f9d07d937621d64b7c539f06ad6a60f9bbeb1 /server/mpm/experimental/threadpool/threadpool.c
parent40735dc8cd4d1ff3b08120a4b5aa840e59a07978 (diff)
downloadhttpd-cb3975a65b990f99a6e894e3229d49b239a9429c.tar.gz
Now that we have the functionality in apr, we can now have 2.0's
startup message regarding AcceptMutex (what we are using and what the default is) "fully" match what is present in 1.3. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95568 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/experimental/threadpool/threadpool.c')
-rw-r--r--server/mpm/experimental/threadpool/threadpool.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/mpm/experimental/threadpool/threadpool.c b/server/mpm/experimental/threadpool/threadpool.c
index 0563394b69..dffd4634f9 100644
--- a/server/mpm/experimental/threadpool/threadpool.c
+++ b/server/mpm/experimental/threadpool/threadpool.c
@@ -1862,7 +1862,9 @@ int ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
"Server built: %s", ap_get_server_built());
#ifdef AP_MPM_WANT_SET_ACCEPT_LOCK_MECH
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
- "AcceptMutex: %s", ap_valid_accept_mutex_string);
+ "AcceptMutex: %s (default: %s)",
+ apr_proc_mutex_name(accept_mutex),
+ apr_proc_mutex_defname());
#endif
restart_pending = shutdown_pending = 0;