| 396 | |
| 397 | #ifdef AP_NEED_SET_MUTEX_PERMS |
| 398 | static void log_perms_failure(apr_status_t rv, server_rec *s, const char *type) |
| 399 | { |
| 400 | ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s, APLOGNO(00024) |
| 401 | "Couldn't set permissions on the %s mutex; " |
| 402 | "check User and Group directives", |
| 403 | type); |
| 404 | } |
| 405 | #endif |
| 406 | |
| 407 | AP_DECLARE(apr_status_t) ap_global_mutex_create(apr_global_mutex_t **mutex, |
no test coverage detected