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

Implemented ticket #246, #247, #261, #268, #250 for Symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp

    r1245 r1246  
    8484 
    8585CPjTimeoutTimer::CPjTimeoutTimer() 
    86 : CActive(EPriorityNormal), hasTimedOut_(PJ_FALSE) 
     86: CActive(PJ_SYMBIAN_TIMER_PRIORITY), hasTimedOut_(PJ_FALSE) 
    8787{ 
    8888} 
     
    421421PJ_DEF(pj_status_t) pj_thread_sleep(unsigned msec) 
    422422{ 
    423     //Not a good idea, as we don't want network events to 
    424     //arrive while we're not polling them: 
    425     //PjSymbianOS::Instance()->WaitForActiveObjects(); 
    426  
    427     //.. so rather use this, which won't wake up Active Objects: 
    428423    User::After(msec*1000); 
    429  
    430424    return PJ_SUCCESS; 
    431425} 
Note: See TracChangeset for help on using the changeset viewer.