summaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2013-11-01 18:17:30 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2013-11-01 18:17:30 +0100
commitfbfc3984633113ac7e4e018afb3d10cb8a3d3e50 (patch)
tree89ef719f12a37ac4d5306c6b021f009b327b40ef /action.h
parent7c74c432a7547f9ea49626b6966fe1e63e919439 (diff)
downloadrsyslog-fbfc3984633113ac7e4e018afb3d10cb8a3d3e50.tar.gz
rsyslog-fbfc3984633113ac7e4e018afb3d10cb8a3d3e50.tar.bz2
rsyslog-fbfc3984633113ac7e4e018afb3d10cb8a3d3e50.zip
refactor: move action resume retry counter to wti_t
Diffstat (limited to 'action.h')
-rw-r--r--action.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/action.h b/action.h
index 176af319..50191032 100644
--- a/action.h
+++ b/action.h
@@ -50,7 +50,6 @@ struct action_s {
time_t ttResumeRtry; /* when is it time to retry the resume? */
int iResumeInterval;/* resume interval for this action */
int iResumeRetryCount;/* how often shall we retry a suspended action? (-1 --> eternal) */
- int iNbrResRtry; /* number of retries since last suspend */
int iNbrNoExec; /* number of matches that did not yet yield to an exec */
int iExecEveryNthOccur;/* execute this action only every n-th occurence (with n=0,1 -> always) */
int iExecEveryNthOccurTO;/* timeout for n-th occurence feature */
@@ -68,7 +67,7 @@ struct action_s {
* in this order. */
qqueue_t *pQueue; /* action queue */
pthread_mutex_t mutAction; /* primary action mutex */
- uchar *pszName; /* action name (for documentation) */
+ uchar *pszName; /* action name */
DEF_ATOMIC_HELPER_MUT(mutCAS);
/* for statistics subsystem */
statsobj_t *statsobj;