Changeset 1266 for pjproject/trunk/pjnath/src/pjstun-srv-test/server.c
- Timestamp:
- May 11, 2007 3:14:34 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjstun-srv-test/server.c
r1091 r1266 88 88 89 89 srv->si.thread_cnt = thread_cnt; 90 srv->threads = pj_pool_calloc(pool, thread_cnt, sizeof(pj_thread_t*)); 90 srv->threads = (pj_thread_t**) 91 pj_pool_calloc(pool, thread_cnt, sizeof(pj_thread_t*)); 91 92 for (i=0; i<thread_cnt; ++i) { 92 93 status = pj_thread_create(pool, "worker%p", &worker_thread,
Note: See TracChangeset
for help on using the changeset viewer.