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

Function reset_process_pconf

server/main.c:293–304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

291}
292
293static void reset_process_pconf(process_rec *process)
294{
295 if (process->pconf) {
296 apr_pool_clear(process->pconf);
297 ap_server_conf = NULL;
298 }
299 else {
300 apr_pool_create(&process->pconf, process->pool);
301 apr_pool_tag(process->pconf, "pconf");
302 }
303 apr_pool_pre_cleanup_register(process->pconf, NULL, deregister_all_hooks);
304}
305
306static process_rec *init_process(int *argc, const char * const * *argv)
307{

Callers 2

init_processFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected