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

Function rewritelock_create

modules/mappers/mod_rewrite.c:2889–2901  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2887 */
2888
2889static apr_status_t rewritelock_create(server_rec *s, apr_pool_t *p)
2890{
2891 apr_status_t rc;
2892
2893 /* create the lockfile */
2894 rc = ap_global_mutex_create(&rewrite_mapr_lock_acquire, NULL,
2895 rewritemap_mutex_type, NULL, s, p, 0);
2896 if (rc != APR_SUCCESS) {
2897 return rc;
2898 }
2899
2900 return APR_SUCCESS;
2901}
2902
2903static apr_status_t rewritelock_remove(void *data)
2904{

Callers 1

post_configFunction · 0.85

Calls 1

ap_global_mutex_createFunction · 0.85

Tested by

no test coverage detected