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

Function ap_thread_create

server/util.c:3201–3211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3199}
3200
3201AP_DECLARE(apr_status_t) ap_thread_create(apr_thread_t **thread,
3202 apr_threadattr_t *attr,
3203 apr_thread_start_t func,
3204 void *data, apr_pool_t *pool)
3205{
3206 struct thread_ctx *ctx = apr_palloc(pool, sizeof(*ctx));
3207
3208 ctx->func = func;
3209 ctx->data = data;
3210 return apr_thread_create(thread, attr, thread_start, ctx, pool);
3211}
3212
3213#endif /* AP_HAS_THREAD_LOCAL */
3214

Callers 8

wd_startupFunction · 0.85
activate_slotFunction · 0.85
create_listener_threadFunction · 0.85
start_threadsFunction · 0.85
child_mainFunction · 0.85
create_listener_threadFunction · 0.85
start_threadsFunction · 0.85
child_mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected