summaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-05-11 17:38:33 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-05-11 17:38:33 +0200
commit8e430258fdc9b0577ea8e54dae21cc5942f90104 (patch)
treec24a069a78c960334d2d54b5bcbde7be26a08ea1 /action.h
parent9823c73d1d07e50e6bec7f7c02c88d61d6955526 (diff)
downloadrsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.tar.gz
rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.tar.xz
rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.zip
added capability to draw configuration graphs
- added $GenerateConfigGraph configuration command which can be used to generate nice-looking (and very informative) rsyslog configuration graphs. - added $ActionName configuration directive (currently only used for graph generation, but may find other uses)
Diffstat (limited to 'action.h')
-rw-r--r--action.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/action.h b/action.h
index f2706af6..2a1487a5 100644
--- a/action.h
+++ b/action.h
@@ -72,6 +72,7 @@ struct action_s {
*/
qqueue_t *pQueue; /* action queue */
SYNC_OBJ_TOOL; /* required for mutex support */
+ uchar *pszName; /* action name (for documentation) */
pthread_mutex_t mutActExec; /* mutex to guard actual execution of doAction for single-threaded modules */
};
typedef struct action_s action_t;