summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2021-04-26 21:27:18 +0000
committerylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2021-04-26 21:27:18 +0000
commit9d91f639b1693da015ddeef47204050aa9956559 (patch)
treeea1f93d5fcd22a294b2556bbaab3cd92a65a197e
parent20cbc3246c2a1fc45a0b0358772b1fa67c977bd2 (diff)
downloadlibapr-util-9d91f639b1693da015ddeef47204050aa9956559.tar.gz
Merge r1889217 from trunk:
Follow up to r1884098: Fix synchronization in thread_pool_cleanup(). Ask each thread to signal its task completion individually when being waited in wait_on_busy_threads(), and ignore threads that have already finished their task (elt->current_owner == NULL). git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.6.x@1889218 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--misc/apr_thread_pool.c33
1 files changed, 15 insertions, 18 deletions
diff --git a/misc/apr_thread_pool.c b/misc/apr_thread_pool.c
index ae0b8e8b..6e36ea78 100644
--- a/misc/apr_thread_pool.c
+++ b/misc/apr_thread_pool.c
@@ -46,8 +46,9 @@ struct apr_thread_list_elt
{
APR_RING_ENTRY(apr_thread_list_elt) link;
apr_thread_t *thd;
- volatile void *current_owner;
- volatile enum { TH_RUN, TH_STOP, TH_PROBATION } state;
+ void *current_owner;
+ enum { TH_RUN, TH_STOP, TH_PROBATION } state;
+ int signal_work_done;
};
APR_RING_HEAD(apr_thread_list, apr_thread_list_elt);
@@ -78,7 +79,6 @@ struct apr_thread_pool
apr_thread_cond_t *all_done;
apr_thread_mutex_t *lock;
volatile int terminated;
- int waiting_work_done;
struct apr_thread_pool_tasks *recycled_tasks;
struct apr_thread_list *recycled_thds;
apr_thread_pool_task_t *task_idx[TASK_PRIORITY_SEGS];
@@ -254,6 +254,7 @@ static struct apr_thread_list_elt *elt_new(apr_thread_pool_t * me,
APR_RING_ELEM_INIT(elt, link);
elt->thd = t;
elt->current_owner = NULL;
+ elt->signal_work_done = 0;
elt->state = TH_RUN;
return elt;
}
@@ -311,10 +312,9 @@ static void *APR_THREAD_FUNC thread_pool_func(apr_thread_t * t, void *param)
APR_RING_INSERT_TAIL(me->recycled_tasks, task,
apr_thread_pool_task, link);
elt->current_owner = NULL;
- if (me->waiting_work_done) {
+ if (elt->signal_work_done) {
+ elt->signal_work_done = 0;
apr_thread_cond_signal(me->work_done);
- apr_thread_mutex_unlock(me->lock);
- apr_thread_mutex_lock(me->lock);
}
} while (elt->state != TH_STOP);
APR_RING_REMOVE(elt, link);
@@ -426,24 +426,22 @@ APU_DECLARE(apr_status_t) apr_thread_pool_create(apr_thread_pool_t ** me,
return rv;
apr_pool_pre_cleanup_register(tp->pool, tp, thread_pool_cleanup);
- while (init_threads) {
- /* Grab the mutex as apr_thread_create() and thread_pool_func() will
- * allocate from (*me)->pool. This is dangerous if there are multiple
- * initial threads to create.
- */
- apr_thread_mutex_lock(tp->lock);
+ /* Grab the mutex as apr_thread_create() and thread_pool_func() will
+ * allocate from (*me)->pool. This is dangerous if there are multiple
+ * initial threads to create.
+ */
+ apr_thread_mutex_lock(tp->lock);
+ while (init_threads--) {
rv = apr_thread_create(&t, NULL, thread_pool_func, tp, tp->pool);
if (APR_SUCCESS != rv) {
- apr_thread_mutex_unlock(tp->lock);
break;
}
tp->thd_cnt++;
if (tp->thd_cnt > tp->thd_high) {
tp->thd_high = tp->thd_cnt;
}
- apr_thread_mutex_unlock(tp->lock);
- --init_threads;
}
+ apr_thread_mutex_unlock(tp->lock);
if (rv == APR_SUCCESS) {
*me = tp;
@@ -748,7 +746,7 @@ static void wait_on_busy_threads(apr_thread_pool_t *me, void *owner)
elt = APR_RING_FIRST(me->busy_thds);
while (elt != APR_RING_SENTINEL(me->busy_thds, apr_thread_list_elt, link)) {
- if (owner && elt->current_owner != owner) {
+ if (owner ? owner != elt->current_owner : !elt->current_owner) {
elt = APR_RING_NEXT(elt, link);
continue;
}
@@ -764,9 +762,8 @@ static void wait_on_busy_threads(apr_thread_pool_t *me, void *owner)
#endif
#endif
- me->waiting_work_done = 1;
+ elt->signal_work_done = 1;
apr_thread_cond_wait(me->work_done, me->lock);
- me->waiting_work_done = 0;
/* Restart */
elt = APR_RING_FIRST(me->busy_thds);