diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-07-20 08:15:19 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-07-20 08:15:19 +0200 |
commit | 88132c79f1e75edb2caf5d3f9ad1685834785be7 (patch) | |
tree | b36a8e3e2bd34f624613d3e04a21907ce6806769 /runtime/wtp.h | |
parent | ac186f1c3d6d4a8fa4230a205c7fce91b3fef535 (diff) | |
download | rsyslog-88132c79f1e75edb2caf5d3f9ad1685834785be7.tar.gz rsyslog-88132c79f1e75edb2caf5d3f9ad1685834785be7.tar.xz rsyslog-88132c79f1e75edb2caf5d3f9ad1685834785be7.zip |
cleanup: removed 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 69a05a14..e2dd9409 100644 --- a/runtime/wtp.h +++ b/runtime/wtp.h @@ -48,7 +48,6 @@ struct wtp_s { int iCurNumWrkThrd;/* current number of active worker threads */ struct wti_s **pWrkr;/* array with control structure for the worker thread(s) associated with this wtp */ int toWrkShutdown; /* timeout for idle workers in ms, -1 means indefinite (0 is immediate) */ - bool bInactivityGuard;/* prevents inactivity due to race condition */ rsRetVal (*pConsumer)(void *); /* user-supplied consumer function for dewtpd messages */ /* synchronization variables */ pthread_mutex_t mutWtp; /* mutex for the wtp's thread management */ @@ -81,7 +80,6 @@ rsRetVal wtpConstructFinalize(wtp_t *pThis); rsRetVal wtpDestruct(wtp_t **ppThis); rsRetVal wtpAdviseMaxWorkers(wtp_t *pThis, int nMaxWrkr); rsRetVal wtpProcessThrdChanges(wtp_t *pThis); -rsRetVal wtpSetInactivityGuard(wtp_t *pThis, int bNewState, int bLockMutex); rsRetVal wtpChkStopWrkr(wtp_t *pThis, int bLockUsrMutex); rsRetVal wtpSetState(wtp_t *pThis, wtpState_t iNewState); rsRetVal wtpWakeupWrkr(wtp_t *pThis); |