summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/ael_main.c6
-rw-r--r--utils/check_expr.c7
-rw-r--r--utils/conf2ael.c6
3 files changed, 19 insertions, 0 deletions
diff --git a/utils/ael_main.c b/utils/ael_main.c
index a849e1fdc..b4245c8b4 100644
--- a/utils/ael_main.c
+++ b/utils/ael_main.c
@@ -648,5 +648,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 */
diff --git a/utils/check_expr.c b/utils/check_expr.c
index 3ee061d85..135e9d1e2 100644
--- a/utils/check_expr.c
+++ b/utils/check_expr.c
@@ -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;
diff --git a/utils/conf2ael.c b/utils/conf2ael.c
index cec4e4d7f..efd9e8173 100644
--- a/utils/conf2ael.c
+++ b/utils/conf2ael.c
@@ -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 */