[asterisk-commits] dlee: branch 1.8 r398748 - /branches/1.8/utils/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 10 12:22:25 CDT 2013
Author: dlee
Date: Tue Sep 10 12:22:23 2013
New Revision: 398748
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=398748
Log:
Fixed utils directory breakage from r398648
Modified:
branches/1.8/utils/ael_main.c
branches/1.8/utils/check_expr.c
branches/1.8/utils/conf2ael.c
Modified: branches/1.8/utils/ael_main.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/utils/ael_main.c?view=diff&rev=398748&r1=398747&r2=398748
==============================================================================
--- branches/1.8/utils/ael_main.c (original)
+++ branches/1.8/utils/ael_main.c Tue Sep 10 12:22:23 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/1.8/utils/check_expr.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/utils/check_expr.c?view=diff&rev=398748&r1=398747&r2=398748
==============================================================================
--- branches/1.8/utils/check_expr.c (original)
+++ branches/1.8/utils/check_expr.c Tue Sep 10 12:22:23 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/1.8/utils/conf2ael.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/utils/conf2ael.c?view=diff&rev=398748&r1=398747&r2=398748
==============================================================================
--- branches/1.8/utils/conf2ael.c (original)
+++ branches/1.8/utils/conf2ael.c Tue Sep 10 12:22:23 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