Changeset 17 for pjproject/main/pjlib/src/pj/ioqueue_common_abs.c
- Timestamp:
- Nov 6, 2005 7:46:48 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/main/pjlib/src/pj/ioqueue_common_abs.c
r14 r17 288 288 /* Done. */ 289 289 } else { 290 pj_assert(!"Descriptor is signaled but key " 291 "has no pending operation!"); 292 290 /* 291 * This is normal; execution may fall here when multiple threads 292 * are signalled for the same event, but only one thread eventually 293 * able to process the event. 294 */ 293 295 pj_mutex_unlock(h->mutex); 294 296 } … … 417 419 418 420 } else { 421 /* 422 * This is normal; execution may fall here when multiple threads 423 * are signalled for the same event, but only one thread eventually 424 * able to process the event. 425 */ 419 426 pj_mutex_unlock(h->mutex); 420 427 } … … 617 624 write_op = (struct write_operation*)op_key; 618 625 write_op->op = PJ_IOQUEUE_OP_SEND; 619 write_op->buf = NULL;626 write_op->buf = (void*)data; 620 627 write_op->size = *length; 621 628 write_op->written = 0; … … 695 702 write_op = (struct write_operation*)op_key; 696 703 write_op->op = PJ_IOQUEUE_OP_SEND_TO; 697 write_op->buf = NULL;704 write_op->buf = (void*)data; 698 705 write_op->size = *length; 699 706 write_op->written = 0;
Note: See TracChangeset
for help on using the changeset viewer.