| 291 | } |
| 292 | |
| 293 | static 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 | |
| 306 | static process_rec *init_process(int *argc, const char * const * *argv) |
| 307 | { |
no outgoing calls
no test coverage detected