]> git.ipfire.org Git - thirdparty/asterisk.git/commit
lock: Add named lock capability 21/2521/11
authorGeorge Joseph <george.joseph@fairview5.com>
Fri, 1 Apr 2016 01:04:29 +0000 (19:04 -0600)
committerGeorge Joseph <george.joseph@fairview5.com>
Fri, 8 Apr 2016 18:50:58 +0000 (12:50 -0600)
commit772ff3048fca37d2b1d768910ccbcef515ac546c
treebf2ab0963a57d2699b63aaf333fa65c4510f624f
parent2ef8a954b370eb2d39b3ba833b53627ffbd5aa17
lock:  Add named lock capability

Locking some objects like sorcery objects can be tricky because the underlying
ao2 object may not be the same for all callers.  For instance, two threads that
call ast_sorcery_retrieve_by_id on the same aor name might actually get 2
different ao2 objects if the underlying wizard had to rehydrate the aor from a
database. Locking one ao2 object doesn't have any effect on the other even if
those objects had locks in the first place.

Named locks allow access control by keyspace and key strings.  Now an "aor"
named "1000" can be locked and any other thread attempting to lock "aor" "1000"
will wait regardless of whether the underlying ao2 object is the same or not.
Mutex and rwlocks are supported.

This capability will initially be used to lock an aor when multiple threads may
be attempting to prune expired contacts from it.

Change-Id: If258c0b7f92b02d07243ce70e535821a1ea7fb45
include/asterisk/_private.h
include/asterisk/named_locks.h [new file with mode: 0644]
main/asterisk.c
main/named_locks.c [new file with mode: 0644]
tests/test_named_lock.c [new file with mode: 0644]