diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-11-07 12:25:46 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-11-07 12:25:46 +0100 |
commit | 248e6bf819312e6ab43df0e46269080a8518a2f9 (patch) | |
tree | de96a878ad6972303dd8851b972ef48efdf83615 /runtime/wtp.h | |
parent | 48c712ce7eed7e378be7be83e5d39c5e849fb126 (diff) | |
download | rsyslog-248e6bf819312e6ab43df0e46269080a8518a2f9.tar.gz rsyslog-248e6bf819312e6ab43df0e46269080a8518a2f9.tar.bz2 rsyslog-248e6bf819312e6ab43df0e46269080a8518a2f9.zip |
cleanup no longer needed code
Diffstat (limited to 'runtime/wtp.h')
-rw-r--r-- | runtime/wtp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/wtp.h b/runtime/wtp.h index 697722af..4bc284cb 100644 --- a/runtime/wtp.h +++ b/runtime/wtp.h @@ -56,7 +56,6 @@ struct wtp_s { void *pUsr; /* pointer to user object (in this case, the queue the wtp belongs to) */ pthread_attr_t attrThrd;/* attribute for new threads (created just once and cached here) */ pthread_mutex_t *pmutUsr; - pthread_cond_t *pcondBusy; /* unused condition variable, was used to signal threads to wake up */ rsRetVal (*pfChkStopWrkr)(void *pUsr, int); rsRetVal (*pfGetDeqBatchSize)(void *pUsr, int*); /* obtains max dequeue count from queue config */ rsRetVal (*pfObjProcessed)(void *pUsr, wti_t *pWti); /* indicate user object is processed */ @@ -95,6 +94,5 @@ PROTOTYPEpropSetMeth(wtp, iMaxWorkerThreads, int); PROTOTYPEpropSetMeth(wtp, pUsr, void*); PROTOTYPEpropSetMeth(wtp, iNumWorkerThreads, int); PROTOTYPEpropSetMethPTR(wtp, pmutUsr, pthread_mutex_t); -PROTOTYPEpropSetMethPTR(wtp, pcondBusy, pthread_cond_t); #endif /* #ifndef WTP_H_INCLUDED */ |