diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-22 11:43:23 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-22 11:43:23 +0000 |
commit | c0d0e0643dabbbb8a7fce0a52af5a35831403aee (patch) | |
tree | f73ae1e887cdba1353b136bee3dbda5850e26d33 /vmop.h | |
parent | d3da6ba716d94ec684186a89a52fb90636db89ee (diff) | |
download | rsyslog-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |