* 20140207.4 (2.5.0-dev) add ap_mpm_register_socket_callback_timeout
* 20140207.5 (2.5.0-dev) Add ap_mpm_resume_suspended(), AP_MPMQ_CAN_SUSPEND to
* ap_mpm_query(), and suspended_baton to conn_rec
- * 20140207.6 (2.5.0-dev) Added ap_log_common().
+ * 20140207.6 (2.5.0-dev) Added ap_log_mpm_common().
* 20140207.7 (2.5.0-dev) Added ap_force_set_tz().
* 20140207.8 (2.5.0-dev) Added ap_shutdown_conn().
* 20140611.0 (2.5.0-dev) Add ap_mpm_socket_callback_fn_t.
AP_DECLARE(void) ap_log_command_line(apr_pool_t *p, server_rec *s);
/**
- * Log common shared data
- * @param s The server_rec whose process's command line we want to log.
+ * Log common (various) MPM shared data at startup.
+ * @param s The server_rec of the error log we want to log to.
* Misc commonly logged data is logged to that server's error log.
*/
-AP_DECLARE(void) ap_log_common(server_rec *s);
+AP_DECLARE(void) ap_log_mpm_common(server_rec *s);
/**
* Log the current pid of the parent process
AP_DECLARE_DATA ap_listen_rec *ap_listeners = NULL;
/* Let ap_num_listen_buckets be global so that it can
- * be printed by ap_log_common(), but keep the listeners
+ * be printed by ap_log_mpm_common(), but keep the listeners
* buckets static since it is used only here to close them
* all (including duplicated) with ap_close_listeners().
*/
}
/* grab bag function to log commonly logged and shared info */
-AP_DECLARE(void) ap_log_common(server_rec *s)
+AP_DECLARE(void) ap_log_mpm_common(server_rec *s)
{
ap_log_error(APLOG_MARK, APLOG_DEBUG , 0, s, APLOGNO(02639)
"Using SO_REUSEPORT: %s (%d)",
ap_log_error(APLOG_MARK, APLOG_INFO, 0, ap_server_conf, APLOGNO(00490)
"Server built: %s", ap_get_server_built());
ap_log_command_line(plog, s);
- ap_log_common(s);
+ ap_log_mpm_common(s);
mpm_state = AP_MPMQ_RUNNING;
ap_log_error(APLOG_MARK, APLOG_INFO, 0, ap_server_conf, APLOGNO(02875)
"Server built: %s", ap_get_server_built());
ap_log_command_line(plog, s);
- ap_log_common(s);
+ ap_log_mpm_common(s);
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(02876)
"Accept mutex: %s (default: %s)",
(all_buckets[0].mutex)
ap_log_error(APLOG_MARK, APLOG_INFO, 0, ap_server_conf, APLOGNO(00225)
"Server built: %s", ap_get_server_built());
ap_log_command_line(plog, s);
- ap_log_common(s);
+ ap_log_mpm_common(s);
show_server_data();
mpm_state = AP_MPMQ_RUNNING;
ap_log_error(APLOG_MARK, APLOG_INFO, 0, ap_server_conf, APLOGNO(00164)
"Server built: %s", ap_get_server_built());
ap_log_command_line(plog, s);
- ap_log_common(s);
+ ap_log_mpm_common(s);
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(00165)
"Accept mutex: %s (default: %s)",
(all_buckets[0].mutex)
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, APLOGNO(00456)
"Server built: %s", ap_get_server_built());
ap_log_command_line(plog, s);
- ap_log_common(s);
+ ap_log_mpm_common(s);
restart = master_main(ap_server_conf, shutdown_event, restart_event);
ap_log_error(APLOG_MARK, APLOG_INFO, 0, ap_server_conf, APLOGNO(00293)
"Server built: %s", ap_get_server_built());
ap_log_command_line(plog, s);
- ap_log_common(s);
+ ap_log_mpm_common(s);
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(00294)
"Accept mutex: %s (default: %s)",
(all_buckets[0].mutex)