Ignore:
Timestamp:
May 3, 2007 7:56:21 PM (17 years ago)
Author:
bennylp
Message:

Misc Symbian fixes, looks good

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c

    r1246 r1248  
    647647{ 
    648648#if defined(PJ_SYMBIAN) && PJ_SYMBIAN != 0 
     649    /* Ideally we shouldn't call pj_thread_sleep() and rather 
     650     * CActiveScheduler::WaitForAnyRequest() here, but that will 
     651     * drag in Symbian header and it doesn't look pretty. 
     652     */ 
    649653    pj_thread_sleep(msec); 
    650654#else 
     
    976980PJ_DEF(int) pjsua_handle_events(unsigned msec_timeout) 
    977981{ 
     982#if defined(PJ_SYMBIAN) && PJ_SYMBIAN != 0 
     983    /* Ideally we shouldn't call pj_thread_sleep() and rather 
     984     * CActiveScheduler::WaitForAnyRequest() here, but that will 
     985     * drag in Symbian header and it doesn't look pretty. 
     986     */ 
     987    pj_thread_sleep(msec_timeout); 
     988    return msec_timeout; 
     989#else 
     990 
    978991    unsigned count = 0; 
    979992    pj_time_val tv; 
     
    9901003 
    9911004    return count; 
     1005#endif 
    9921006} 
    9931007 
Note: See TracChangeset for help on using the changeset viewer.