| 2887 | */ |
| 2888 | |
| 2889 | static 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 | |
| 2903 | static apr_status_t rewritelock_remove(void *data) |
| 2904 | { |
no test coverage detected