[Freeswitch-trunk] [commit] r12858 - freeswitch/trunk/src
    FreeSWITCH SVN 
    anthm at freeswitch.org
       
    Tue Mar 31 13:55:26 PDT 2009
    
    
  
Author: anthm
Date: Tue Mar 31 15:55:26 2009
New Revision: 12858
Log:
linux... how did that not crash every time
Modified:
   freeswitch/trunk/src/switch_event.c
Modified: freeswitch/trunk/src/switch_event.c
==============================================================================
--- freeswitch/trunk/src/switch_event.c	(original)
+++ freeswitch/trunk/src/switch_event.c	Tue Mar 31 15:55:26 2009
@@ -1119,9 +1119,10 @@
 
 	for (;;) {
 		for (index = (*event)->priority; index < 3; index++) {
+			int was = (*event)->priority;
 			if (switch_queue_trypush(EVENT_QUEUE[index], *event) == SWITCH_STATUS_SUCCESS) {
-				if (index != (*event)->priority) {
-					switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "queued event at a lower priority!\n");
+				if (index != was) {
+					switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "queued event at a lower priority %d/%d!\n", index, was);
 				}
 				goto end;
 			}
    
    
More information about the Freeswitch-trunk
mailing list