https://bz.apache.org/bugzilla/show_bug.cgi?id=66316
--- Comment #5 from Seann Herdejurgen <se...@herdejurgen.com> --- I located the source code for the modperl_tipool_pop() method. If the XXX: code below is executed, the method returns before releasing the modperl_tipool_lock(tipool) lock. modperl_list_t *modperl_tipool_pop(modperl_tipool_t *tipool) { modperl_list_t *head; modperl_tipool_lock(tipool); if (tipool->size == tipool->in_use) { if (tipool->size < tipool->cfg->max) { MP_TRACE_i(MP_FUNC, "no idle items, size %d < %d max\n", tipool->size, tipool->cfg->max); if (tipool->func->tipool_rgrow) { void * item = (*tipool->func->tipool_rgrow)(tipool, tipool->data); modperl_tipool_add(tipool, item); } } /* block until an item becomes available */ modperl_tipool_wait(tipool); } head = tipool->idle; tipool->idle = modperl_list_remove(tipool->idle, head); tipool->busy = modperl_list_append(tipool->busy, head); tipool->in_use++; /* XXX: this should never happen */ if (!head) { MP_TRACE_i(MP_FUNC, "PANIC: no items available, %d of %d in use\n", tipool->in_use, tipool->size); abort(); } modperl_tipool_unlock(tipool); return head; } -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org For additional commands, e-mail: bugs-h...@httpd.apache.org