Skip to content
Snippets Groups Projects
Commit 6a1f3d62 authored by David M. Lee's avatar David M. Lee
Browse files

Fixed utils directory breakage from r398648

........

Merged revisions 398748 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........

Merged revisions 398749 from http://svn.asterisk.org/svn/asterisk/branches/11
........

Merged revisions 398750 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@398751 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 35b5549d
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......@@ -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;
......
......@@ -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 */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment