diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-10-20 11:05:02 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-10-20 11:05:02 +0200 |
commit | 8e45fd5c8e7df45532c5d239676cd92107c9e942 (patch) | |
tree | d5c4a95b2a679abef30d65cfea7f33ecf698a0c5 /runtime/wtp.c | |
parent | 73cc2afb2246a0339fdadde4f2bf66120bcae20f (diff) | |
download | rsyslog-8e45fd5c8e7df45532c5d239676cd92107c9e942.tar.gz rsyslog-8e45fd5c8e7df45532c5d239676cd92107c9e942.tar.xz rsyslog-8e45fd5c8e7df45532c5d239676cd92107c9e942.zip |
bugfix: potential hang condition on queue shutdown
Diffstat (limited to 'runtime/wtp.c')
-rw-r--r-- | runtime/wtp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/wtp.c b/runtime/wtp.c index 3beae271..fcecc4f2 100644 --- a/runtime/wtp.c +++ b/runtime/wtp.c @@ -171,9 +171,7 @@ wtpWakeupAllWrkr(wtp_t *pThis) DEFiRet; ISOBJ_TYPE_assert(pThis, wtp); - d_pthread_mutex_lock(pThis->pmutUsr); pthread_cond_broadcast(pThis->pcondBusy); - d_pthread_mutex_unlock(pThis->pmutUsr); RETiRet; } |