MCPcopy Create free account
hub / github.com/apache/httpd / core_pre_config

Function core_pre_config

server/core.c:5116–5130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5114
5115
5116static 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
5132static int core_post_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s)
5133{

Callers

nothing calls this directly

Calls 4

ap_mutex_initFunction · 0.85
init_config_definesFunction · 0.85
mpm_common_pre_configFunction · 0.85

Tested by

no test coverage detected