summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-02-28 22:37:08 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-02-28 22:37:08 +0000
commit12fbd33b4c244f0a97c39c9f6411b444814dbc56 (patch)
tree6c02d508ab1042a2f7c121e9e111118886b3437b /intrpvar.h
parent003a92ef523fede541513d0991848d9e3d62707a (diff)
downloadperl-12fbd33b4c244f0a97c39c9f6411b444814dbc56.tar.gz
make the bison-based parser threadsafe and capable of deep
recursion by eradicating Perl_yylex_r() p4raw-id: //depot/perl@22408
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index c97b91e488..065119d0fd 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -396,6 +396,10 @@ PERLVARA(Ilast_swash_key,10, U8)
PERLVAR(Ilast_swash_tmps, U8 *)
PERLVAR(Ilast_swash_slen, STRLEN)
+/* perly.c globals */
+PERLVAR(Iyycharp, int *)
+PERLVAR(Iyylvalp, YYSTYPE *)
+
PERLVARI(Iglob_index, int, 0)
PERLVAR(Isrand_called, bool)
PERLVARA(Iuudmap,256, char)