[svn-commits] jpeeler: branch 1.6.2 r306123 - /branches/1.6.2/main/features.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Feb 3 14:49:53 CST 2011


Author: jpeeler
Date: Thu Feb  3 14:49:48 2011
New Revision: 306123

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=306123
Log:
Set exception on channel in parking thread when POLLPRI event detected.

This is done just to make the code be equivalent to the old select code. As
noted in 303106 the same issue was already fixed in this branch, but the
exception was not set on the channel in the case of POLLPRI. The reason that
this did not cause a problem here is because in 122923 the check in __ast_read
to check the exception flag was removed.

(related to #18637)

Modified:
    branches/1.6.2/main/features.c

Modified: branches/1.6.2/main/features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/features.c?view=diff&rev=306123&r1=306122&r2=306123
==============================================================================
--- branches/1.6.2/main/features.c (original)
+++ branches/1.6.2/main/features.c Thu Feb  3 14:49:48 2011
@@ -3493,7 +3493,7 @@
 					continue;
 				}
 
-				if (pfds[y].revents & POLLERR) {
+				if (pfds[y].revents & POLLPRI) {
 					ast_set_flag(chan, AST_FLAG_EXCEPTION);
 				} else {
 					ast_clear_flag(chan, AST_FLAG_EXCEPTION);




More information about the svn-commits mailing list