123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /* 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.h"
- #include "fspr_portable.h"
- #include "fspr_arch_threadproc.h"
- #if APR_HAS_THREADS
- #if APR_HAVE_PTHREAD_H
- APR_DECLARE(fspr_status_t) fspr_threadkey_private_create(fspr_threadkey_t **key,
- void (*dest)(void *),
- fspr_pool_t *pool)
- {
- (*key) = (fspr_threadkey_t *)fspr_pcalloc(pool, sizeof(fspr_threadkey_t));
- if ((*key) == NULL) {
- return APR_ENOMEM;
- }
- (*key)->pool = pool;
- return pthread_key_create(&(*key)->key, dest);
- }
- APR_DECLARE(fspr_status_t) fspr_threadkey_private_get(void **new,
- fspr_threadkey_t *key)
- {
- #ifdef PTHREAD_GETSPECIFIC_TAKES_TWO_ARGS
- if (pthread_getspecific(key->key,new))
- *new = NULL;
- #else
- (*new) = pthread_getspecific(key->key);
- #endif
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_threadkey_private_set(void *priv,
- fspr_threadkey_t *key)
- {
- fspr_status_t stat;
- if ((stat = pthread_setspecific(key->key, priv)) == 0) {
- return APR_SUCCESS;
- }
- else {
- return stat;
- }
- }
- APR_DECLARE(fspr_status_t) fspr_threadkey_private_delete(fspr_threadkey_t *key)
- {
- #ifdef HAVE_PTHREAD_KEY_DELETE
- fspr_status_t stat;
- if ((stat = pthread_key_delete(key->key)) == 0) {
- return APR_SUCCESS;
- }
- return stat;
- #else
- return APR_ENOTIMPL;
- #endif
- }
- APR_DECLARE(fspr_status_t) fspr_threadkey_data_get(void **data, const char *key,
- fspr_threadkey_t *threadkey)
- {
- return fspr_pool_userdata_get(data, key, threadkey->pool);
- }
- APR_DECLARE(fspr_status_t) fspr_threadkey_data_set(void *data, const char *key,
- fspr_status_t (*cleanup)(void *),
- fspr_threadkey_t *threadkey)
- {
- return fspr_pool_userdata_set(data, key, cleanup, threadkey->pool);
- }
- APR_DECLARE(fspr_status_t) fspr_os_threadkey_get(fspr_os_threadkey_t *thekey,
- fspr_threadkey_t *key)
- {
- *thekey = key->key;
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_os_threadkey_put(fspr_threadkey_t **key,
- fspr_os_threadkey_t *thekey,
- fspr_pool_t *pool)
- {
- if (pool == NULL) {
- return APR_ENOPOOL;
- }
- if ((*key) == NULL) {
- (*key) = (fspr_threadkey_t *)fspr_pcalloc(pool, sizeof(fspr_threadkey_t));
- (*key)->pool = pool;
- }
- (*key)->key = *thekey;
- return APR_SUCCESS;
- }
- #endif /* APR_HAVE_PTHREAD_H */
- #endif /* APR_HAS_THREADS */
- #if !APR_HAS_THREADS
- /* avoid warning for no prototype */
- APR_DECLARE(fspr_status_t) fspr_os_threadkey_get(void);
- APR_DECLARE(fspr_status_t) fspr_os_threadkey_get(void)
- {
- return APR_ENOTIMPL;
- }
- #endif
|