/* Create threads after we've done all the libevent setup. */
for (i = 0; i < nthreads; i++) {
create_worker(worker_libevent, &threads[i]);
}
the above code is located in memcached.c (version 1.4.13).
the i should start from 1, not 0, because threads[0] is the current thread.
Original issue reported on code.google.com by yangzxs...@gmail.com on 17 Apr 2012 at 1:15
Original issue reported on code.google.com by
yangzxs...@gmail.com
on 17 Apr 2012 at 1:15