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

Function ap_unixd_mpm_get_retained_data

os/unix/unixd.c:449–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

447}
448
449AP_DECLARE(ap_unixd_mpm_retained_data *) ap_unixd_mpm_get_retained_data(void)
450{
451 if (!retained_data) {
452 retained_data = ap_retained_data_create("ap_unixd_mpm_retained_data",
453 sizeof(*retained_data));
454 apr_pool_pre_cleanup_register(ap_pglobal, NULL, retained_data_cleanup);
455 retained_data->mpm_state = AP_MPMQ_STARTING;
456 }
457 return retained_data;
458}
459
460static void sig_term(int sig)
461{

Callers 4

ap_unixd_mpm_set_signalsFunction · 0.85
prefork_pre_configFunction · 0.85
worker_pre_configFunction · 0.85
event_pre_configFunction · 0.85

Calls 1

ap_retained_data_createFunction · 0.85

Tested by

no test coverage detected