| 5114 | |
| 5115 | |
| 5116 | static int core_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp) |
| 5117 | { |
| 5118 | ap_mutex_init(pconf); |
| 5119 | |
| 5120 | if (!saved_server_config_defines) |
| 5121 | init_config_defines(pconf); |
| 5122 | apr_pool_cleanup_register(pconf, NULL, reset_config_defines, |
| 5123 | apr_pool_cleanup_null); |
| 5124 | |
| 5125 | ap_regcomp_set_default_cflags(AP_REG_DEFAULT); |
| 5126 | |
| 5127 | mpm_common_pre_config(pconf); |
| 5128 | |
| 5129 | return OK; |
| 5130 | } |
| 5131 | |
| 5132 | static int core_post_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s) |
| 5133 | { |
nothing calls this directly
no test coverage detected