Changeset 16
- Timestamp:
- Nov 6, 2005 5:47:14 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/main/pjlib/src/pj/ioqueue_select.c
r14 r16 68 68 * This will check the validity of the fd_sets. 69 69 */ 70 /* 70 71 #if defined(PJ_DEBUG) && PJ_DEBUG != 0 71 72 # define VALIDATE_FD_SET 1 … … 73 74 # define VALIDATE_FD_SET 0 74 75 #endif 76 */ 77 #define VALIDATE_FD_SET 0 75 78 76 79 /* … … 271 274 { 272 275 pj_ioqueue_key_t *key; 276 277 /* 278 * This basicly would not work anymore. 279 * We need to lock key before performing the check, but we can't do 280 * so because we're holding ioqueue mutex. If we acquire key's mutex 281 * now, the will cause deadlock. 282 */ 283 pj_assert(0); 273 284 274 285 key = ioqueue->key_list.next;
Note: See TracChangeset
for help on using the changeset viewer.