summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-22 11:43:23 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-22 11:43:23 +0000
commitc0d0e0643dabbbb8a7fce0a52af5a35831403aee (patch)
treef73ae1e887cdba1353b136bee3dbda5850e26d33 /rsyslog.h
parentd3da6ba716d94ec684186a89a52fb90636db89ee (diff)
downloadrsyslog-c0d0e0643dabbbb8a7fce0a52af5a35831403aee.tar.gz
rsyslog-c0d0e0643dabbbb8a7fce0a52af5a35831403aee.tar.xz
rsyslog-c0d0e0643dabbbb8a7fce0a52af5a35831403aee.zip
begun implementing rsyslog virtual machine (vm class)
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 2d31bd14..c8b2fcfa 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -130,6 +130,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_INTERFACE_NOT_SUPPORTED = -2054, /**< interface not supported */
RS_RET_OUT_OF_STACKSPACE = -2055, /**< a stack data structure is exhausted and can not be grown */
RS_RET_STACK_EMPTY = -2056, /**< a pop was requested on a stack, but the stack was already empty */
+ RS_RET_INVALID_VMOP = -2057, /**< invalid virtual machine instruction */
RS_RET_OK_DELETE_LISTENTRY = 1, /**< operation successful, but callee requested the deletion of an entry (special state) */
RS_RET_TERMINATE_NOW = 2, /**< operation successful, function is requested to terminate (mostly used with threads) */
RS_RET_NO_RUN = 3, /**< operation successful, but function does not like to be executed */