diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-04-02 16:32:10 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-04-02 16:32:10 +0000 |
commit | 5d9a96ca2d500987d60740e4430baf1602f410c1 (patch) | |
tree | b445051ed7a8129a0b2e3958c3cfce291fa7618a /thrdvar.h | |
parent | 623e66097f3d3c76e4fbfed49657029a98953c17 (diff) | |
download | perl-5d9a96ca2d500987d60740e4430baf1602f410c1.tar.gz |
use slabs to allocate save state space in regmatch()
p4raw-id: //depot/perl@27679
Diffstat (limited to 'thrdvar.h')
-rw-r--r-- | thrdvar.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -221,3 +221,8 @@ PERLVAR(Twatchok, char *) PERLVAR(Treg_match_utf8, bool) /* was what we matched against utf8 */ +/* the currently active slab in a chain of slabs of regmatch states, + * and the currently active state within that slab */ + +PERLVARI(Tregmatch_slab, regmatch_slab *, NULL) +PERLVAR(Tregmatch_state, regmatch_state *) |