Apache HTTPD
thread_rwlock.c
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "apr.h"
18#include "apr_private.h"
19#include "apr_general.h"
20#include "apr_strings.h"
21#include "apr_arch_thread_rwlock.h"
22#include "apr_portable.h"
23
25{
27
28 NXRwLockFree (rwlock->rwlock);
29 return APR_SUCCESS;
30}
31
34{
36
37 NXHierarchy_t hierarchy = 1; /* for libc NKS NXRwLockAlloc */
38 NXLockInfo_t *info; /* for libc NKS NXRwLockAlloc */
39
41
42 if(new_rwlock ==NULL) {
43 return APR_ENOMEM;
44 }
46
49 if(new_rwlock->rwlock == NULL)
50 return APR_ENOMEM;
51
54 *rwlock = new_rwlock;
55
56 return APR_SUCCESS;
57}
58
60{
61 NXRdLock(rwlock->rwlock);
62 return APR_SUCCESS;
63}
64
66{
67 if (!NXTryRdLock(rwlock->rwlock))
68 return APR_EBUSY;
69 return APR_SUCCESS;
70}
71
73{
74 NXWrLock(rwlock->rwlock);
75 return APR_SUCCESS;
76}
77
79{
80 if (!NXTryWrLock(rwlock->rwlock))
81 return APR_EBUSY;
82 return APR_SUCCESS;
83}
84
86{
87 NXRwUnlock(rwlock->rwlock);
88 return APR_SUCCESS;
89}
90
92{
94 if ((stat = thread_rwlock_cleanup(rwlock)) == APR_SUCCESS) {
96 return APR_SUCCESS;
97 }
98 return stat;
99}
100
102
APR Miscellaneous library routines.
APR Portability Routines.
APR Strings library.
#define APR_ENOMEM
Definition apr_errno.h:683
#define APR_EBUSY
Definition apr_errno.h:480
const void apr_status_t(*) apr_status_t(* APR_DECLARE)(void) apr_pool_pre_cleanup_register(apr_pool_t *p
Definition apr_pools.h:646
apr_size_t size
const char int apr_pool_t * pool
Definition apr_cstr.h:84
#define APR_SUCCESS
Definition apr_errno.h:225
int apr_status_t
Definition apr_errno.h:44
void * data
#define APR_POOL_IMPLEMENT_ACCESSOR(type)
Definition apr_pools.h:91
#define apr_pcalloc(p, size)
Definition apr_pools.h:465
return NULL
Definition mod_so.c:359
static apr_status_t thread_rwlock_cleanup(void *data)
INT info
apr_thread_rwlock_tryrdlock(apr_thread_rwlock_t *rwlock)