Changeset 5843
- Timestamp:
- Jul 26, 2018 3:20:03 AM (6 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/event.h
r5825 r5843 265 265 /** 266 266 * Tell the event manager not to create any event worker thread. 267 * Do not set this flag if app plans to publish an event using 268 * PJMEDIA_EVENT_PUBLISH_POST_EVENT. 267 269 */ 268 270 PJMEDIA_EVENT_MGR_NO_THREAD = 1 -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r5842 r5843 113 113 /* Create event manager */ 114 114 if (!pjmedia_event_mgr_instance()) { 115 status = pjmedia_event_mgr_create(pjsua_var.pool, 116 PJMEDIA_EVENT_MGR_NO_THREAD, NULL); 115 status = pjmedia_event_mgr_create(pjsua_var.pool, 0, NULL); 117 116 if (status != PJ_SUCCESS) { 118 117 PJ_PERROR(1,(THIS_FILE, status,
Note: See TracChangeset
for help on using the changeset viewer.