diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-02 13:22:23 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-02 13:22:23 +0000 |
commit | 2b2cdb5a6c2e8659771451571c77844488c6fa92 (patch) | |
tree | 003a80adf06626daaa4effa81fe63a50383642b0 /modules.h | |
parent | 9f7b03b801ed82e499666e5c29b4dda094fb1d57 (diff) | |
download | rsyslog-2b2cdb5a6c2e8659771451571c77844488c6fa92.tar.gz rsyslog-2b2cdb5a6c2e8659771451571c77844488c6fa92.tar.xz rsyslog-2b2cdb5a6c2e8659771451571c77844488c6fa92.zip |
added tryResume() API to module interface
Diffstat (limited to 'modules.h')
-rw-r--r-- | modules.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -61,6 +61,7 @@ typedef struct moduleInfo { rsRetVal (*onSelectReadyWrite)(void*);/* called when fd is writeable after select() */ rsRetVal (*needUDPSocket)(void*);/* called when fd is writeable after select() */ rsRetVal (*dbgPrintInstInfo)(void*);/* called before termination or module unload */ + rsRetVal (*tryResume)(void*);/* called to see if module actin can be resumed now */ rsRetVal (*modExit)(); /* called before termination or module unload */ /* below: parse a configuration line - return if processed * or not. If not, must be parsed to next module. |