123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "fspr_arch_thread_mutex.h"
- #define APR_WANT_MEMFUNC
- #include "fspr_want.h"
- #if APR_HAS_THREADS
- static fspr_status_t thread_mutex_cleanup(void *data)
- {
- fspr_thread_mutex_t *mutex = data;
- fspr_status_t rv;
- rv = pthread_mutex_destroy(&mutex->mutex);
- #ifdef PTHREAD_SETS_ERRNO
- if (rv) {
- rv = errno;
- }
- #endif
- return rv;
- }
- APR_DECLARE(fspr_status_t) fspr_thread_mutex_create(fspr_thread_mutex_t **mutex,
- unsigned int flags,
- fspr_pool_t *pool)
- {
- fspr_thread_mutex_t *new_mutex;
- fspr_status_t rv;
-
- #ifndef HAVE_PTHREAD_MUTEX_RECURSIVE
- if (flags & APR_THREAD_MUTEX_NESTED) {
- return APR_ENOTIMPL;
- }
- #endif
- new_mutex = fspr_pcalloc(pool, sizeof(fspr_thread_mutex_t));
- new_mutex->pool = pool;
- #ifdef HAVE_PTHREAD_MUTEX_RECURSIVE
- if (flags & APR_THREAD_MUTEX_NESTED) {
- pthread_mutexattr_t mattr;
-
- rv = pthread_mutexattr_init(&mattr);
- if (rv) return rv;
-
- rv = pthread_mutexattr_settype(&mattr, PTHREAD_MUTEX_RECURSIVE);
- if (rv) {
- pthread_mutexattr_destroy(&mattr);
- return rv;
- }
-
- rv = pthread_mutex_init(&new_mutex->mutex, &mattr);
-
- pthread_mutexattr_destroy(&mattr);
- } else
- #endif
- rv = pthread_mutex_init(&new_mutex->mutex, NULL);
- if (rv) {
- #ifdef PTHREAD_SETS_ERRNO
- rv = errno;
- #endif
- return rv;
- }
- fspr_pool_cleanup_register(new_mutex->pool,
- new_mutex, thread_mutex_cleanup,
- fspr_pool_cleanup_null);
- *mutex = new_mutex;
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_thread_mutex_lock(fspr_thread_mutex_t *mutex)
- {
- fspr_status_t rv;
- rv = pthread_mutex_lock(&mutex->mutex);
- #ifdef PTHREAD_SETS_ERRNO
- if (rv) {
- rv = errno;
- }
- #endif
-
- return rv;
- }
- APR_DECLARE(fspr_status_t) fspr_thread_mutex_trylock(fspr_thread_mutex_t *mutex)
- {
- fspr_status_t rv;
- rv = pthread_mutex_trylock(&mutex->mutex);
- if (rv) {
- #ifdef PTHREAD_SETS_ERRNO
- rv = errno;
- #endif
- return (rv == EBUSY) ? APR_EBUSY : rv;
- }
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_thread_mutex_unlock(fspr_thread_mutex_t *mutex)
- {
- fspr_status_t status;
- status = pthread_mutex_unlock(&mutex->mutex);
- #ifdef PTHREAD_SETS_ERRNO
- if (status) {
- status = errno;
- }
- #endif
- return status;
- }
- APR_DECLARE(fspr_status_t) fspr_thread_mutex_destroy(fspr_thread_mutex_t *mutex)
- {
- return fspr_pool_cleanup_run(mutex->pool, mutex, thread_mutex_cleanup);
- }
- APR_POOL_IMPLEMENT_ACCESSOR(thread_mutex)
- #endif /* APR_HAS_THREADS */
|