]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fixed utils directory breakage from r398648
authorDavid M. Lee <dlee@digium.com>
Tue, 10 Sep 2013 17:22:23 +0000 (17:22 +0000)
committerDavid M. Lee <dlee@digium.com>
Tue, 10 Sep 2013 17:22:23 +0000 (17:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@398748 65c4cc65-6c06-0410-ace0-fbb531ad65f3

utils/ael_main.c
utils/check_expr.c
utils/conf2ael.c

index 9ef8cb8bff7f59ffdc472633a6f26052494af025..b743fc2c97fe7553f6ec5add9f8479345ac4beb1 100644 (file)
@@ -647,5 +647,11 @@ void ast_store_lock_info(enum ast_lock_type type, const char *filename,
 {
 }
 #endif /* HAVE_BKTR */
+void ast_suspend_lock_info(void *lock_addr)
+{
+}
+void ast_restore_lock_info(void *lock_addr)
+{
+}
 #endif /* !defined(LOW_MEMORY) */
 #endif /* DEBUG_THREADS */
index 556b0f9f8e5373ab73ab9fd2525a5ce44de7933d..9689ab1cf96d67e14429ab219d3cae83589c7b56 100644 (file)
@@ -105,6 +105,12 @@ void ast_remove_lock_info(void *lock_addr)
 }
 #endif /* HAVE_BKTR */
 
+void ast_suspend_lock_info(void *lock_addr)
+{
+}
+void ast_restore_lock_info(void *lock_addr)
+{
+}
 void ast_mark_lock_acquired(void *);
 void ast_mark_lock_acquired(void *foo)
 {
@@ -112,6 +118,7 @@ void ast_mark_lock_acquired(void *foo)
 }
 #endif
 
+
 static int global_lineno = 1;
 static int global_expr_count=0;
 static int global_expr_max_size=0;
index f0ac38fad3d473be4705e071b15112d5625b013c..ee46812376f80d1fb1d13ecec7a0c2f2f0fa0541 100644 (file)
@@ -777,5 +777,11 @@ void ast_store_lock_info(enum ast_lock_type type, const char *filename,
 {
 }
 #endif /* HAVE_BKTR */
+void ast_suspend_lock_info(void *lock_addr)
+{
+}
+void ast_restore_lock_info(void *lock_addr)
+{
+}
 #endif /* !defined(LOW_MEMORY) */
 #endif /* DEBUG_THREADS */