Ignore:
Timestamp:
Mar 1, 2006 7:29:10 PM (18 years ago)
Author:
bennylp
Message:

Moved pjsua to pjsip-apps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_endpoint.c

    r248 r253  
    606606    timeout.sec = timeout.msec = 0; 
    607607    pj_timer_heap_poll( endpt->timer_heap, &timeout ); 
     608 
     609    /* timer_heap_poll should never ever returns negative value, or otherwise 
     610     * ioqueue_poll() will block forever! 
     611     */ 
     612    pj_assert(timeout.sec >= 0 && timeout.msec >= 0); 
    608613 
    609614    /* If caller specifies maximum time to wait, then compare the value with 
Note: See TracChangeset for help on using the changeset viewer.