diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-11-07 12:57:49 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-11-07 12:57:49 +0100 |
commit | 23278699e35173f46effda964fd80b8f868e8b3e (patch) | |
tree | 35b8370799ac9ca9705a26bdee4c9f8309d07f31 /runtime/wtp.h | |
parent | e3dc6041424a779ddce3da8d55af9bc71c99aa61 (diff) | |
parent | fb81cf202c0277f48c75f777fa47e4db4e59f0a3 (diff) | |
download | rsyslog-23278699e35173f46effda964fd80b8f868e8b3e.tar.gz rsyslog-23278699e35173f46effda964fd80b8f868e8b3e.tar.bz2 rsyslog-23278699e35173f46effda964fd80b8f868e8b3e.zip |
Merge branch 'master-ruleeng' into master-ruleeng-simd
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 25992f7f..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; /* condition the user will signal "busy again, keep runing" on (awakes worker) */ 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 */ |