Changeset 1747
- Timestamp:
- Jan 25, 2008 12:01:03 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/clock_thread.c
r1509 r1747 92 92 return status; 93 93 94 status = pj_thread_create(pool, "clock", &clock_thread, clock, 95 0, 0, &clock->thread); 96 if (status != PJ_SUCCESS) { 97 pj_lock_destroy(clock->lock); 98 return status; 94 if ((clock->options & PJMEDIA_CLOCK_NO_ASYNC) == 0) { 95 status = pj_thread_create(pool, "clock", &clock_thread, clock, 96 0, 0, &clock->thread); 97 if (status != PJ_SUCCESS) { 98 pj_lock_destroy(clock->lock); 99 return status; 100 } 99 101 } 100 102
Note: See TracChangeset
for help on using the changeset viewer.