Lines Matching +full:lock +full:- +full:- +full:- +full:-
2 * Copyright (c) 2008-2012 Niels Provos, Nick Mathewson
27 #include "event2/event-config.h"
28 #include "evconfig-private.h"
37 #include "log-internal.h"
38 #include "mm-internal.h"
39 #include "util-internal.h"
40 #include "evthread-internal.h"
106 if (target->alloc) in evthread_set_lock_callbacks()
107 event_warnx("Trying to disable lock functions after " in evthread_set_lock_callbacks()
112 if (target->alloc) { in evthread_set_lock_callbacks()
114 if (target->lock_api_version == cbs->lock_api_version && in evthread_set_lock_callbacks()
115 target->supported_locktypes == cbs->supported_locktypes && in evthread_set_lock_callbacks()
116 target->alloc == cbs->alloc && in evthread_set_lock_callbacks()
117 target->free == cbs->free && in evthread_set_lock_callbacks()
118 target->lock == cbs->lock && in evthread_set_lock_callbacks()
119 target->unlock == cbs->unlock) { in evthread_set_lock_callbacks()
120 /* no change -- allow this. */ in evthread_set_lock_callbacks()
123 event_warnx("Can't change lock callbacks once they have been " in evthread_set_lock_callbacks()
125 return -1; in evthread_set_lock_callbacks()
127 if (cbs->alloc && cbs->free && cbs->lock && cbs->unlock) { in evthread_set_lock_callbacks()
131 return -1; in evthread_set_lock_callbacks()
149 if (target->alloc_condition) in evthread_set_condition_callbacks()
156 if (target->alloc_condition) { in evthread_set_condition_callbacks()
158 if (target->condition_api_version == cbs->condition_api_version && in evthread_set_condition_callbacks()
159 target->alloc_condition == cbs->alloc_condition && in evthread_set_condition_callbacks()
160 target->free_condition == cbs->free_condition && in evthread_set_condition_callbacks()
161 target->signal_condition == cbs->signal_condition && in evthread_set_condition_callbacks()
162 target->wait_condition == cbs->wait_condition) { in evthread_set_condition_callbacks()
163 /* no change -- allow this. */ in evthread_set_condition_callbacks()
168 return -1; in evthread_set_condition_callbacks()
170 if (cbs->alloc_condition && cbs->free_condition && in evthread_set_condition_callbacks()
171 cbs->signal_condition && cbs->wait_condition) { in evthread_set_condition_callbacks()
175 evthread_cond_fns_.alloc_condition = cbs->alloc_condition; in evthread_set_condition_callbacks()
176 evthread_cond_fns_.free_condition = cbs->free_condition; in evthread_set_condition_callbacks()
177 evthread_cond_fns_.signal_condition = cbs->signal_condition; in evthread_set_condition_callbacks()
188 /* XXXX if we ever use read-write locks, we will need a separate
189 * lock to protect count. */
191 void *lock; member
201 if (!(result->lock = original_lock_fns_.alloc( in debug_lock_alloc()
207 result->lock = NULL; in debug_lock_alloc()
209 result->signature = DEBUG_LOCK_SIG; in debug_lock_alloc()
210 result->locktype = locktype; in debug_lock_alloc()
211 result->count = 0; in debug_lock_alloc()
212 result->held_by = 0; in debug_lock_alloc()
219 struct debug_lock *lock = lock_; in debug_lock_free() local
220 EVUTIL_ASSERT(lock->count == 0); in debug_lock_free()
221 EVUTIL_ASSERT(locktype == lock->locktype); in debug_lock_free()
222 EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); in debug_lock_free()
224 original_lock_fns_.free(lock->lock, in debug_lock_free()
225 lock->locktype|EVTHREAD_LOCKTYPE_RECURSIVE); in debug_lock_free()
227 lock->lock = NULL; in debug_lock_free()
228 lock->count = -100; in debug_lock_free()
229 lock->signature = 0x12300fda; in debug_lock_free()
230 mm_free(lock); in debug_lock_free()
234 evthread_debug_lock_mark_locked(unsigned mode, struct debug_lock *lock) in evthread_debug_lock_mark_locked() argument
236 EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); in evthread_debug_lock_mark_locked()
237 ++lock->count; in evthread_debug_lock_mark_locked()
238 if (!(lock->locktype & EVTHREAD_LOCKTYPE_RECURSIVE)) in evthread_debug_lock_mark_locked()
239 EVUTIL_ASSERT(lock->count == 1); in evthread_debug_lock_mark_locked()
243 if (lock->count > 1) in evthread_debug_lock_mark_locked()
244 EVUTIL_ASSERT(lock->held_by == me); in evthread_debug_lock_mark_locked()
245 lock->held_by = me; in evthread_debug_lock_mark_locked()
252 struct debug_lock *lock = lock_; in debug_lock_lock() local
254 if (lock->locktype & EVTHREAD_LOCKTYPE_READWRITE) in debug_lock_lock()
258 if (original_lock_fns_.lock) in debug_lock_lock()
259 res = original_lock_fns_.lock(mode, lock->lock); in debug_lock_lock()
261 evthread_debug_lock_mark_locked(mode, lock); in debug_lock_lock()
267 evthread_debug_lock_mark_unlocked(unsigned mode, struct debug_lock *lock) in evthread_debug_lock_mark_unlocked() argument
269 EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); in evthread_debug_lock_mark_unlocked()
270 if (lock->locktype & EVTHREAD_LOCKTYPE_READWRITE) in evthread_debug_lock_mark_unlocked()
277 EVUTIL_ASSERT(lock->held_by == me); in evthread_debug_lock_mark_unlocked()
278 if (lock->count == 1) in evthread_debug_lock_mark_unlocked()
279 lock->held_by = 0; in evthread_debug_lock_mark_unlocked()
281 --lock->count; in evthread_debug_lock_mark_unlocked()
282 EVUTIL_ASSERT(lock->count >= 0); in evthread_debug_lock_mark_unlocked()
288 struct debug_lock *lock = lock_; in debug_lock_unlock() local
290 evthread_debug_lock_mark_unlocked(mode, lock); in debug_lock_unlock()
292 res = original_lock_fns_.unlock(mode, lock->lock); in debug_lock_unlock()
300 struct debug_lock *lock = lock_; in debug_cond_wait() local
301 EVUTIL_ASSERT(lock); in debug_cond_wait()
302 EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); in debug_cond_wait()
304 evthread_debug_lock_mark_unlocked(0, lock); in debug_cond_wait()
305 r = original_cond_fns_.wait_condition(cond_, lock->lock, tv); in debug_cond_wait()
306 evthread_debug_lock_mark_locked(0, lock); in debug_cond_wait()
347 struct debug_lock *lock = lock_; in evthread_is_debug_lock_held_() local
348 if (! lock->count) in evthread_is_debug_lock_held_()
352 if (lock->held_by != me) in evthread_is_debug_lock_held_()
361 struct debug_lock *lock = lock_; in evthread_debug_get_real_lock_() local
362 return lock->lock; in evthread_debug_get_real_lock_()
375 /* Case 1: allocate a debug lock. */ in evthread_setup_global_lock_()
379 /* Case 2: wrap the lock in a debug lock. */ in evthread_setup_global_lock_()
380 struct debug_lock *lock; in evthread_setup_global_lock_() local
384 /* We can't wrap it: We need a recursive lock */ in evthread_setup_global_lock_()
388 lock = mm_malloc(sizeof(struct debug_lock)); in evthread_setup_global_lock_()
389 if (!lock) { in evthread_setup_global_lock_()
393 lock->lock = lock_; in evthread_setup_global_lock_()
394 lock->locktype = locktype; in evthread_setup_global_lock_()
395 lock->count = 0; in evthread_setup_global_lock_()
396 lock->held_by = 0; in evthread_setup_global_lock_()
397 return lock; in evthread_setup_global_lock_()
399 /* Case 3: allocate a regular lock */ in evthread_setup_global_lock_()
403 /* Case 4: Fill in a debug lock with a real lock */ in evthread_setup_global_lock_()
404 struct debug_lock *lock = lock_ ? lock_ : debug_lock_alloc(locktype); in evthread_setup_global_lock_() local
407 EVUTIL_ASSERT(lock->locktype == locktype); in evthread_setup_global_lock_()
408 if (!lock->lock) { in evthread_setup_global_lock_()
409 lock->lock = original_lock_fns_.alloc( in evthread_setup_global_lock_()
411 if (!lock->lock) { in evthread_setup_global_lock_()
412 lock->count = -200; in evthread_setup_global_lock_()
413 mm_free(lock); in evthread_setup_global_lock_()
417 return lock; in evthread_setup_global_lock_()
441 evthreadimpl_lock_free_(void *lock, unsigned locktype) in evthreadimpl_lock_free_() argument
444 evthread_lock_fns_.free(lock, locktype); in evthreadimpl_lock_free_()
447 evthreadimpl_lock_lock_(unsigned mode, void *lock) in evthreadimpl_lock_lock_() argument
449 if (evthread_lock_fns_.lock) in evthreadimpl_lock_lock_()
450 return evthread_lock_fns_.lock(mode, lock); in evthreadimpl_lock_lock_()
455 evthreadimpl_lock_unlock_(unsigned mode, void *lock) in evthreadimpl_lock_unlock_() argument
458 return evthread_lock_fns_.unlock(mode, lock); in evthreadimpl_lock_unlock_()
489 evthreadimpl_cond_wait_(void *cond, void *lock, const struct timeval *tv) in evthreadimpl_cond_wait_() argument
492 return evthread_cond_fns_.wait_condition(cond, lock, tv); in evthreadimpl_cond_wait_()
505 return evthread_lock_fns_.lock != NULL; in evthreadimpl_locking_enabled_()