diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-03 11:40:13 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-03 11:40:13 +0100 |
commit | feddb2cc8fa213725a14e556d0366aef8d3a4339 (patch) | |
tree | befc6075cf0e147c4565cd021701142b25bbbd99 /runtime/typedefs.h | |
parent | 40fffde2b6a36ba12388b89d422104c258a667f7 (diff) | |
download | rsyslog-feddb2cc8fa213725a14e556d0366aef8d3a4339.tar.gz rsyslog-feddb2cc8fa213725a14e556d0366aef8d3a4339.tar.bz2 rsyslog-feddb2cc8fa213725a14e556d0366aef8d3a4339.zip |
queue: change gerenic queue pUsr ptr to be action_t
this was always action_t, but the initial design was more generic. We are
making it specific now in order to gain better performance (after all, we
did not need the generic engine in the past 8 years...)
Diffstat (limited to 'runtime/typedefs.h')
-rw-r--r-- | runtime/typedefs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/typedefs.h b/runtime/typedefs.h index 1e0cb466..5cc24e4a 100644 --- a/runtime/typedefs.h +++ b/runtime/typedefs.h @@ -93,6 +93,7 @@ typedef struct outchannels_s outchannels_t; typedef struct modConfData_s modConfData_t; typedef struct instanceConf_s instanceConf_t; typedef struct ratelimit_s ratelimit_t; +typedef struct action_s action_t; typedef int rs_size_t; /* we do never need more than 2Gig strings, signed permits to * use -1 as a special flag. */ typedef rsRetVal (*prsf_t)(struct vmstk_s*, int); /* pointer to a RainerScript function */ |