Changeset 1248 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
- Timestamp:
- May 3, 2007 7:56:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
r1246 r1248 647 647 { 648 648 #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 */ 649 653 pj_thread_sleep(msec); 650 654 #else … … 976 980 PJ_DEF(int) pjsua_handle_events(unsigned msec_timeout) 977 981 { 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 978 991 unsigned count = 0; 979 992 pj_time_val tv; … … 990 1003 991 1004 return count; 1005 #endif 992 1006 } 993 1007
Note: See TracChangeset
for help on using the changeset viewer.