summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-22 09:51:34 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-22 09:51:34 +0000
commitd3da6ba716d94ec684186a89a52fb90636db89ee (patch)
treec653c0c7e560be2839c468f4f877f1cf47ac83c5 /rsyslog.h
parent8fdd3b45c0c2b2a5751efd79e2be4cc0241af53e (diff)
downloadrsyslog-d3da6ba716d94ec684186a89a52fb90636db89ee.tar.gz
rsyslog-d3da6ba716d94ec684186a89a52fb90636db89ee.tar.xz
rsyslog-d3da6ba716d94ec684186a89a52fb90636db89ee.zip
completed initial vmstk implementation
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 8b8ada8d..2d31bd14 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -128,6 +128,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_INVALID_OCTAL_DIGIT = -2052, /**< invalid octal digit during parsing */
RS_RET_INVALID_HEX_DIGIT = -2053, /**< invalid hex digit during parsing */
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_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 */