Changeset 4991
- Timestamp:
- Mar 6, 2015 6:04:21 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/ioqueue_select.c
r4537 r4991 831 831 { 832 832 pj_fd_set_t rfdset, wfdset, xfdset; 833 int nfds; 833 834 int count, i, counter; 834 835 pj_ioqueue_key_t *h; … … 877 878 #endif 878 879 880 nfds = ioqueue->nfds; 881 879 882 /* Unlock ioqueue before select(). */ 880 883 pj_lock_release(ioqueue->lock); 881 884 882 count = pj_sock_select( ioqueue->nfds+1, &rfdset, &wfdset, &xfdset,885 count = pj_sock_select(nfds+1, &rfdset, &wfdset, &xfdset, 883 886 timeout); 884 887
Note: See TracChangeset
for help on using the changeset viewer.