summaryrefslogtreecommitdiff
path: root/utils/conf2ael.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-06-03 18:26:51 +0000
committerRussell Bryant <russell@russellbryant.com>2008-06-03 18:26:51 +0000
commit51051ce9499ee83e977caa66de1af9ba80493ad0 (patch)
tree96804416e94a5415a44f5ae0e03b3d2417c4a544 /utils/conf2ael.c
parent95a05794cf66f38a28292021b75e80b8d1cff1de (diff)
Add lock tracking for rwlocks. Previously, lock.h only had the ability to
hold tracking information for mutexes. Now, the "core show locks" output will output information about who is holding a rwlock when a thread is waiting on it. (closes issue #11279) Reported by: ys Patches: trunk_lock_utils.v8.diff uploaded by ys (license 281) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@120064 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/conf2ael.c')
-rw-r--r--utils/conf2ael.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/conf2ael.c b/utils/conf2ael.c
index a55a79512..d2251a41e 100644
--- a/utils/conf2ael.c
+++ b/utils/conf2ael.c
@@ -714,6 +714,12 @@ void ast_store_lock_info(enum ast_lock_type type, const char *filename,
int line_num, const char *func, const char *lock_name, void *lock_addr, struct ast_bt *bt)
{
}
+
+int ast_bt_get_addresses(struct ast_bt *bt)
+{
+ return 0;
+}
+
#else
void ast_remove_lock_info(void *lock_addr)
{