Changeset 3929 for pjproject/trunk
- Timestamp:
- Dec 28, 2011 9:52:07 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r3925 r3929 979 979 /* Wait until transport is initialized, or time out */ 980 980 if (!async) { 981 PJSUA_UNLOCK(); 981 pj_bool_t has_pjsua_lock = PJSUA_LOCK_IS_LOCKED(); 982 if (has_pjsua_lock) 983 PJSUA_UNLOCK(); 982 984 while (call_med->tp_ready == PJ_EPENDING) { 983 985 pjsua_handle_events(100); 984 986 } 985 PJSUA_LOCK(); 987 if (has_pjsua_lock) 988 PJSUA_LOCK(); 986 989 } 987 990
Note: See TracChangeset
for help on using the changeset viewer.