[asterisk-commits] dlee: branch 11 r398749 - in /branches/11: ./ utils/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 10 12:23:58 CDT 2013
Author: dlee
Date: Tue Sep 10 12:23:56 2013
New Revision: 398749
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=398749
Log:
Fixed utils directory breakage from r398648
........
Merged revisions 398748 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/11/ (props changed)
branches/11/utils/ael_main.c
branches/11/utils/check_expr.c
branches/11/utils/conf2ael.c
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/11/utils/ael_main.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/utils/ael_main.c?view=diff&rev=398749&r1=398748&r2=398749
==============================================================================
--- branches/11/utils/ael_main.c (original)
+++ branches/11/utils/ael_main.c Tue Sep 10 12:23:56 2013
@@ -647,5 +647,11 @@
{
}
#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 */
Modified: branches/11/utils/check_expr.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/utils/check_expr.c?view=diff&rev=398749&r1=398748&r2=398749
==============================================================================
--- branches/11/utils/check_expr.c (original)
+++ branches/11/utils/check_expr.c Tue Sep 10 12:23:56 2013
@@ -105,12 +105,19 @@
}
#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)
{
/* not a lot to do in a standalone w/o threading! */
}
#endif
+
static int global_lineno = 1;
static int global_expr_count=0;
Modified: branches/11/utils/conf2ael.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/utils/conf2ael.c?view=diff&rev=398749&r1=398748&r2=398749
==============================================================================
--- branches/11/utils/conf2ael.c (original)
+++ branches/11/utils/conf2ael.c Tue Sep 10 12:23:56 2013
@@ -777,5 +777,11 @@
{
}
#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 */
More information about the asterisk-commits
mailing list