Changeset 5539 for pjproject/trunk/pjlib/src/pj/ioqueue_select.c
- Timestamp:
- Jan 23, 2017 4:32:34 AM (8 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk
- Property svn:mergeinfo changed
/pjproject/branches/projects/uwp (added) merged: 5208,5210-5211,5254,5256,5298,5439,5470,5497,5511-5515,5526,5528-5529,5532,5538 -
Property
svn:global-ignores
set to
bin
obj
lib
Bin
output
Debug
Generated[^A-Ba-b0-9]Files
Service[^A-Ba-b0-9]References
*.opendb
*.db
*.user
- Property svn:mergeinfo changed
-
pjproject/trunk/pjlib/src/pj/ioqueue_select.c
r5196 r5539 895 895 pj_lock_release(ioqueue->lock); 896 896 897 #if defined(PJ_WIN32_WINPHONE8) && PJ_WIN32_WINPHONE8 898 count = 0; 899 __try { 900 #endif 901 897 902 count = pj_sock_select(nfds+1, &rfdset, &wfdset, &xfdset, 898 903 timeout); 904 905 #if defined(PJ_WIN32_WINPHONE8) && PJ_WIN32_WINPHONE8 906 /* Ignore Invalid Handle Exception raised by select().*/ 907 } 908 __except (GetExceptionCode() == STATUS_INVALID_HANDLE ? 909 EXCEPTION_CONTINUE_EXECUTION : EXCEPTION_CONTINUE_SEARCH) { 910 } 911 #endif 899 912 900 913 if (count == 0)
Note: See TracChangeset
for help on using the changeset viewer.