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

Function ap_retained_data_create

server/config.c:2527–2534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2525}
2526
2527AP_DECLARE(void *) ap_retained_data_create(const char *key, apr_size_t size)
2528{
2529 void *retained;
2530
2531 retained = apr_pcalloc(ap_pglobal, size);
2532 apr_pool_userdata_set((const void *)retained, key, apr_pool_cleanup_null, ap_pglobal);
2533 return retained;
2534}
2535
2536static int count_directives_sub(const char *directive, ap_directive_t *current)
2537{

Callers 7

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

Calls

no outgoing calls

Tested by

no test coverage detected