[svn-commits] tilghman: trunk r131982 - in /trunk: ./ channels/ include/asterisk/ main/
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Jul 18 11:33:57 CDT 2008
Author: tilghman
Date: Fri Jul 18 11:33:56 2008
New Revision: 131982
URL: http://svn.digium.com/view/asterisk?view=rev&rev=131982
Log:
Merged revisions 131970 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r131970 | tilghman | 2008-07-18 11:30:31 -0500 (Fri, 18 Jul 2008) | 2 lines
Make the ast_assert call within ast_sched_del report something useful.
........
Modified:
trunk/ (props changed)
trunk/channels/chan_iax2.c
trunk/include/asterisk/sched.h
trunk/main/sched.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=131982&r1=131981&r2=131982
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Fri Jul 18 11:33:56 2008
@@ -1202,8 +1202,8 @@
/* I am the schedule, so I'm allowed to do this */
iaxs[callno]->lagid = -1;
}
- } else if (option_debug > 0) {
- ast_log(LOG_DEBUG, "I was supposed to send a LAGRQ with callno %d, but no such call exists (and I cannot remove lagid, either).\n", callno);
+ } else {
+ ast_log(LOG_WARNING, "I was supposed to send a LAGRQ with callno %d, but no such call exists (and I cannot remove lagid, either).\n", callno);
}
ast_mutex_unlock(&iaxsl[callno]);
Modified: trunk/include/asterisk/sched.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/sched.h?view=diff&rev=131982&r1=131981&r2=131982
==============================================================================
--- trunk/include/asterisk/sched.h (original)
+++ trunk/include/asterisk/sched.h Fri Jul 18 11:33:56 2008
@@ -210,7 +210,8 @@
* \param id ID of the scheduled item to delete
* \return Returns 0 on success, -1 on failure
*/
-int ast_sched_del(struct sched_context *con, int id) attribute_warn_unused_result;
+int _ast_sched_del(struct sched_context *con, int id, const char *file, int line, const char *function) attribute_warn_unused_result;
+#define ast_sched_del(a, b) _ast_sched_del(a, b, __FILE__, __LINE__, __PRETTY_FUNCTION__)
/*! \brief Determines number of seconds until the next outstanding event to take place
* Determine the number of seconds until the next outstanding event
Modified: trunk/main/sched.c
URL: http://svn.digium.com/view/asterisk/trunk/main/sched.c?view=diff&rev=131982&r1=131981&r2=131982
==============================================================================
--- trunk/main/sched.c (original)
+++ trunk/main/sched.c Fri Jul 18 11:33:56 2008
@@ -334,7 +334,7 @@
* would be two or more in the list with that
* id.
*/
-int ast_sched_del(struct sched_context *con, int id)
+int _ast_sched_del(struct sched_context *con, int id, const char *file, int line, const char *function)
{
struct sched *s, tmp;
@@ -373,7 +373,7 @@
if (!s) {
ast_debug(1, "Attempted to delete nonexistent schedule entry %d!\n", id);
- ast_assert(s != NULL);
+ _ast_assert(0, "s != NULL", file, line, function);
return -1;
}
More information about the svn-commits
mailing list