1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996,2007 Oracle. All rights reserved.
*
* $Id: mut_method.c,v 12.14 2007/05/17 15:15:45 bostic Exp $
*/
#include "db_config.h"
#include "db_int.h"
#include "dbinc/mutex_int.h"
/*
* __mutex_alloc_pp --
* Allocate a mutex, application method.
*
* PUBLIC: int __mutex_alloc_pp __P((DB_ENV *, u_int32_t, db_mutex_t *));
*/
int
__mutex_alloc_pp(dbenv, flags, indxp)
DB_ENV *dbenv;
u_int32_t flags;
db_mutex_t *indxp;
{
DB_THREAD_INFO *ip;
int ret;
PANIC_CHECK(dbenv);
switch (flags) {
case 0:
case DB_MUTEX_PROCESS_ONLY:
case DB_MUTEX_SELF_BLOCK:
break;
default:
return (__db_ferr(dbenv, "DB_ENV->mutex_alloc", 0));
}
ENV_ENTER(dbenv, ip);
ret = __mutex_alloc(dbenv, MTX_APPLICATION, flags, indxp);
ENV_LEAVE(dbenv, ip);
return (ret);
}
/*
* __mutex_free_pp --
* Destroy a mutex, application method.
*
* PUBLIC: int __mutex_free_pp __P((DB_ENV *, db_mutex_t));
*/
int
__mutex_free_pp(dbenv, indx)
DB_ENV *dbenv;
db_mutex_t indx;
{
DB_THREAD_INFO *ip;
int ret;
PANIC_CHECK(dbenv);
if (indx == MUTEX_INVALID)
return (EINVAL);
/*
* Internally Berkeley DB passes around the db_mutex_t address on
* free, because we want to make absolutely sure the slot gets
* overwritten with MUTEX_INVALID. We don't export MUTEX_INVALID,
* so we don't export that part of the API, either.
*/
ENV_ENTER(dbenv, ip);
ret = __mutex_free(dbenv, &indx);
ENV_LEAVE(dbenv, ip);
return (ret);
}
/*
* __mutex_lock --
* Lock a mutex, application method.
*
* PUBLIC: int __mutex_lock_pp __P((DB_ENV *, db_mutex_t));
*/
int
__mutex_lock_pp(dbenv, indx)
DB_ENV *dbenv;
db_mutex_t indx;
{
PANIC_CHECK(dbenv);
if (indx == MUTEX_INVALID)
return (EINVAL);
return (__mutex_lock(dbenv, indx));
}
/*
* __mutex_unlock --
* Unlock a mutex, application method.
*
* PUBLIC: int __mutex_unlock_pp __P((DB_ENV *, db_mutex_t));
*/
int
__mutex_unlock_pp(dbenv, indx)
DB_ENV *dbenv;
db_mutex_t indx;
{
PANIC_CHECK(dbenv);
if (indx == MUTEX_INVALID)
return (EINVAL);
return (__mutex_unlock(dbenv, indx));
}
/*
* __mutex_get_align --
* DB_ENV->mutex_get_align.
*
* PUBLIC: int __mutex_get_align __P((DB_ENV *, u_int32_t *));
*/
int
__mutex_get_align(dbenv, alignp)
DB_ENV *dbenv;
u_int32_t *alignp;
{
if (MUTEX_ON(dbenv))
*alignp = ((DB_MUTEXREGION *)
dbenv->mutex_handle->reginfo.primary)->stat.st_mutex_align;
else
*alignp = dbenv->mutex_align;
return (0);
}
/*
* __mutex_set_align --
* DB_ENV->mutex_set_align.
*
* PUBLIC: int __mutex_set_align __P((DB_ENV *, u_int32_t));
*/
int
__mutex_set_align(dbenv, align)
DB_ENV *dbenv;
u_int32_t align;
{
ENV_ILLEGAL_AFTER_OPEN(dbenv, "DB_ENV->set_mutex_align");
if (align == 0 || !POWER_OF_TWO(align)) {
__db_errx(dbenv,
"DB_ENV->mutex_set_align: alignment value must be a non-zero power-of-two");
return (EINVAL);
}
dbenv->mutex_align = align;
return (0);
}
/*
* __mutex_get_increment --
* DB_ENV->mutex_get_increment.
*
* PUBLIC: int __mutex_get_increment __P((DB_ENV *, u_int32_t *));
*/
int
__mutex_get_increment(dbenv, incrementp)
DB_ENV *dbenv;
u_int32_t *incrementp;
{
/*
* We don't maintain the increment in the region (it just makes
* no sense). Return whatever we have configured on this handle,
* nobody is ever going to notice.
*/
*incrementp = dbenv->mutex_inc;
return (0);
}
/*
* __mutex_set_increment --
* DB_ENV->mutex_set_increment.
*
* PUBLIC: int __mutex_set_increment __P((DB_ENV *, u_int32_t));
*/
int
__mutex_set_increment(dbenv, increment)
DB_ENV *dbenv;
u_int32_t increment;
{
ENV_ILLEGAL_AFTER_OPEN(dbenv, "DB_ENV->set_mutex_increment");
dbenv->mutex_cnt = 0;
dbenv->mutex_inc = increment;
return (0);
}
/*
* __mutex_get_max --
* DB_ENV->mutex_get_max.
*
* PUBLIC: int __mutex_get_max __P((DB_ENV *, u_int32_t *));
*/
int
__mutex_get_max(dbenv, maxp)
DB_ENV *dbenv;
u_int32_t *maxp;
{
if (MUTEX_ON(dbenv))
*maxp = ((DB_MUTEXREGION *)
dbenv->mutex_handle->reginfo.primary)->stat.st_mutex_cnt;
else
*maxp = dbenv->mutex_cnt;
return (0);
}
/*
* __mutex_set_max --
* DB_ENV->mutex_set_max.
*
* PUBLIC: int __mutex_set_max __P((DB_ENV *, u_int32_t));
*/
int
__mutex_set_max(dbenv, max)
DB_ENV *dbenv;
u_int32_t max;
{
ENV_ILLEGAL_AFTER_OPEN(dbenv, "DB_ENV->set_mutex_max");
dbenv->mutex_cnt = max;
dbenv->mutex_inc = 0;
return (0);
}
/*
* __mutex_get_tas_spins --
* DB_ENV->mutex_get_tas_spins.
*
* PUBLIC: int __mutex_get_tas_spins __P((DB_ENV *, u_int32_t *));
*/
int
__mutex_get_tas_spins(dbenv, tas_spinsp)
DB_ENV *dbenv;
u_int32_t *tas_spinsp;
{
if (MUTEX_ON(dbenv))
*tas_spinsp = ((DB_MUTEXREGION *)dbenv->
mutex_handle->reginfo.primary)->stat.st_mutex_tas_spins;
else
*tas_spinsp = dbenv->mutex_tas_spins;
return (0);
}
/*
* __mutex_set_tas_spins --
* DB_ENV->mutex_set_tas_spins.
*
* PUBLIC: int __mutex_set_tas_spins __P((DB_ENV *, u_int32_t));
*/
int
__mutex_set_tas_spins(dbenv, tas_spins)
DB_ENV *dbenv;
u_int32_t tas_spins;
{
/*
* Bound the value -- less than 1 makes no sense, greater than 1M
* makes no sense.
*/
if (tas_spins == 0)
tas_spins = 1;
else if (tas_spins > 1000000)
tas_spins = 1000000;
/*
* There's a theoretical race here, but I'm not interested in locking
* the test-and-set spin count. The worst possibility is a thread
* reads out a bad spin count and spins until it gets the lock, but
* that's awfully unlikely.
*/
if (MUTEX_ON(dbenv))
((DB_MUTEXREGION *)dbenv->mutex_handle
->reginfo.primary)->stat.st_mutex_tas_spins = tas_spins;
else
dbenv->mutex_tas_spins = tas_spins;
return (0);
}
|