Apache HTTPD
mutex.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_arch_atomic.h"
18#include "apr_thread_mutex.h"
19
20#ifdef USE_ATOMICS_GENERIC
21
22#include <stdlib.h>
23
24#if APR_HAS_THREADS
25# define DECLARE_MUTEX_LOCKED(name, mem) \
26 apr_thread_mutex_t *name = mutex_hash(mem)
27# define MUTEX_UNLOCK(name) \
28 do { \
29 if (apr_thread_mutex_unlock(name) != APR_SUCCESS) \
30 abort(); \
31 } while (0)
32#else
33# define DECLARE_MUTEX_LOCKED(name, mem)
34# define MUTEX_UNLOCK(name)
35# warning Be warned: using stubs for all atomic operations
36#endif
37
38#if APR_HAS_THREADS
39
41
42#define NUM_ATOMIC_HASH 7
43/* shift by 2 to get rid of alignment issues */
44#define ATOMIC_HASH(x) (unsigned int)(((unsigned long)(x)>>2)%(unsigned int)NUM_ATOMIC_HASH)
45
47{
48 if (hash_mutex == data)
50
51 return APR_SUCCESS;
52}
53
55{
56 int i;
57 apr_status_t rv;
58
59 if (hash_mutex != NULL)
60 return APR_SUCCESS;
61
65
66 for (i = 0; i < NUM_ATOMIC_HASH; i++) {
69 if (rv != APR_SUCCESS) {
70 return rv;
71 }
72 }
73
75}
76
78{
80
81 if (apr_thread_mutex_lock(mutex) != APR_SUCCESS) {
82 abort();
83 }
84
85 return mutex;
86}
87
88#else
89
91{
93}
94
95#endif /* APR_HAS_THREADS */
96
98{
99 return *mem;
100}
101
103{
105
106 *mem = val;
107
108 MUTEX_UNLOCK(mutex);
109}
110
112{
115
116 old_value = *mem;
117 *mem += val;
118
119 MUTEX_UNLOCK(mutex);
120
121 return old_value;
122}
123
125{
127 *mem -= val;
128 MUTEX_UNLOCK(mutex);
129}
130
132{
133 return apr_atomic_add32(mem, 1);
134}
135
137{
138 apr_uint32_t new;
140
141 (*mem)--;
142 new = *mem;
143
144 MUTEX_UNLOCK(mutex);
145
146 return new;
147}
148
151{
152 apr_uint32_t prev;
154
155 prev = *mem;
156 if (prev == cmp) {
157 *mem = with;
158 }
159
160 MUTEX_UNLOCK(mutex);
161
162 return prev;
163}
164
166{
167 apr_uint32_t prev;
169
170 prev = *mem;
171 *mem = val;
172
173 MUTEX_UNLOCK(mutex);
174
175 return prev;
176}
177
178APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp)
179{
180 void *prev;
181 DECLARE_MUTEX_LOCKED(mutex, *mem);
182
183 prev = *(void **)mem;
184 if (prev == cmp) {
185 *mem = with;
186 }
187
188 MUTEX_UNLOCK(mutex);
189
190 return prev;
191}
192
193APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with)
194{
195 void *prev;
196 DECLARE_MUTEX_LOCKED(mutex, *mem);
197
198 prev = *(void **)mem;
199 *mem = with;
200
201 MUTEX_UNLOCK(mutex);
202
203 return prev;
204}
205
206#endif /* USE_ATOMICS_GENERIC */
apr_status_t apr__atomic_generic64_init(apr_pool_t *p)
APR Thread Mutex Routines.
apr_uint32_t apr_atomic_add32(volatile apr_uint32_t *mem, apr_uint32_t val)
Definition atomic.c:30
void apr_atomic_sub32(volatile apr_uint32_t *mem, apr_uint32_t val)
Definition atomic.c:41
apr_uint32_t apr_atomic_inc32(volatile apr_uint32_t *mem)
Definition atomic.c:51
apr_uint32_t apr_atomic_xchg32(volatile apr_uint32_t *mem, apr_uint32_t val)
Definition atomic.c:111
int apr_atomic_dec32(volatile apr_uint32_t *mem)
Definition atomic.c:56
apr_status_t apr_atomic_init(apr_pool_t *p)
Definition atomic.c:21
void apr_atomic_set32(volatile apr_uint32_t *mem, apr_uint32_t val)
Definition atomic.c:73
apr_uint32_t apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t swap, apr_uint32_t cmp)
Definition atomic.c:78
apr_uint32_t apr_atomic_read32(volatile apr_uint32_t *mem)
Definition atomic.c:68
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
apr_uint32_t apr_uint32_t cmp
Definition apr_atomic.h:106
apr_uint32_t with
Definition apr_atomic.h:105
apr_uint32_t val
Definition apr_atomic.h:66
#define APR_SUCCESS
Definition apr_errno.h:225
int apr_status_t
Definition apr_errno.h:44
void * data
void * mem
apr_pool_t * p
Definition md_event.c:32
return NULL
Definition mod_so.c:359
int i
Definition mod_so.c:347