diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-06 17:55:04 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-04-06 17:55:04 +0200 |
commit | 8e3c5a9ca3732a41fbb8581b13c49acd699820da (patch) | |
tree | f75be0a65a7ab52fd3c35d240d0cc0446d3e883d /runtime/vmstk.h | |
parent | 010060289a729dd930ac04b72237f0ca0db9ea1d (diff) | |
download | rsyslog-8e3c5a9ca3732a41fbb8581b13c49acd699820da.tar.gz rsyslog-8e3c5a9ca3732a41fbb8581b13c49acd699820da.tar.xz rsyslog-8e3c5a9ca3732a41fbb8581b13c49acd699820da.zip |
improved internal handling of RainerScript functions
- building the necessary plumbing to support more functions with
decent runtime performance. This is also necessary towards the
long-term goal of loadable library modules.
- added new RainerScript function "tolower"
Diffstat (limited to 'runtime/vmstk.h')
-rw-r--r-- | runtime/vmstk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/vmstk.h b/runtime/vmstk.h index 2d45ee4d..06657cf4 100644 --- a/runtime/vmstk.h +++ b/runtime/vmstk.h @@ -27,11 +27,11 @@ #define VMSTK_SIZE 256 /* the vmstk object */ -typedef struct vmstk_s { +struct vmstk_s { BEGINobjInstance; /* Data to implement generic object - MUST be the first data element! */ var_t *vStk[VMSTK_SIZE];/* the actual stack */ int iStkPtr; /* stack pointer, points to next free location, grows from 0 --> topend */ -} vmstk_t; +}; /* interfaces */ |