summaryrefslogtreecommitdiffstats
path: root/vmop.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 /vmop.h
parentd3da6ba716d94ec684186a89a52fb90636db89ee (diff)
downloadrsyslog-c0d0e0643dabbbb8a7fce0a52af5a35831403aee.tar.gz
rsyslog-c0d0e0643dabbbb8a7fce0a52af5a35831403aee.tar.xz
rsyslog-c0d0e0643dabbbb8a7fce0a52af5a35831403aee.zip
begun implementing rsyslog virtual machine (vm class)
Diffstat (limited to 'vmop.h')
-rw-r--r--vmop.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vmop.h b/vmop.h
index 1ea531b3..70e166e3 100644
--- a/vmop.h
+++ b/vmop.h
@@ -51,7 +51,8 @@ typedef enum { /* do NOT start at 0 to detect uninitialized types after calloc(
opcode_PUSHSYSVAR = 1001, /* requires var operand */
opcode_PUSHMSGVAR = 1002, /* requires var operand */
opcode_PUSHCONSTANT = 1003, /* requires var operand */
- opcode_UNARY_MINUS = 1010
+ opcode_UNARY_MINUS = 1010,
+ opcode_END_PROG = 1011
} opcode_t;