Changeset 1246 for pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
- Timestamp:
- May 3, 2007 1:31:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
r1245 r1246 84 84 85 85 CPjTimeoutTimer::CPjTimeoutTimer() 86 : CActive( EPriorityNormal), hasTimedOut_(PJ_FALSE)86 : CActive(PJ_SYMBIAN_TIMER_PRIORITY), hasTimedOut_(PJ_FALSE) 87 87 { 88 88 } … … 421 421 PJ_DEF(pj_status_t) pj_thread_sleep(unsigned msec) 422 422 { 423 //Not a good idea, as we don't want network events to424 //arrive while we're not polling them:425 //PjSymbianOS::Instance()->WaitForActiveObjects();426 427 //.. so rather use this, which won't wake up Active Objects:428 423 User::After(msec*1000); 429 430 424 return PJ_SUCCESS; 431 425 }
Note: See TracChangeset
for help on using the changeset viewer.