Changeset 4394 for pjproject/branches/1.x/pjlib/src/pj/timer.c
- Timestamp:
- Feb 27, 2013 12:02:42 PM (12 years ago)
- Location:
- pjproject/branches/1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x
- Property svn:mergeinfo changed
/pjproject/trunk merged: 4281
- Property svn:mergeinfo changed
-
pjproject/branches/1.x/pjlib/src/pj/timer.c
r3456 r4394 498 498 PJ_ASSERT_RETURN(ht, 0); 499 499 500 lock_timer_heap(ht); 500 501 if (!ht->cur_size && next_delay) { 501 502 next_delay->sec = next_delay->msec = PJ_MAXINT32; 503 unlock_timer_heap(ht); 502 504 return 0; 503 505 } … … 506 508 pj_gettickcount(&now); 507 509 508 lock_timer_heap(ht);509 510 while ( ht->cur_size && 510 511 PJ_TIME_VAL_LTE(ht->heap[0]->_timer_value, now) &&
Note: See TracChangeset
for help on using the changeset viewer.