Lines Matching defs:mutex
229 apr_thread_mutex_t *mutex;
246 * We need a pool to allocate our mutex. Since we can't clear
260 rv = apr_thread_mutex_create(&(value->mutex), APR_THREAD_MUTEX_DEFAULT,
264 "Failed to create thread mutex for dynamic lock");
282 "Acquiring mutex %s:%d", l->file, l->line);
283 rv = apr_thread_mutex_lock(l->mutex);
289 "Releasing mutex %s:%d", l->file, l->line);
290 rv = apr_thread_mutex_unlock(l->mutex);
306 rv = apr_thread_mutex_destroy(l->mutex);
309 APLOGNO(02192) "Failed to destroy mutex for dynamic "
376 /* Let the registered mutex cleanups do their own thing