diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-01-11 11:31:34 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-01-11 11:31:34 +0000 |
commit | ccb2c8b8ab146edc148e377cd6b108da77d1320b (patch) | |
tree | b58534185023feabf06d12fe6445ce3fbc9ebbdb /perl.h | |
parent | 52b4506763c1e322f848f17908bebdf7672f168e (diff) | |
download | perl-ccb2c8b8ab146edc148e377cd6b108da77d1320b.tar.gz |
Introduce macro PERL_MAX_SUB_DEPTH
p4raw-id: //depot/perl@32949
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -919,6 +919,11 @@ EXTERN_C int usleep(unsigned int); #define PERL_ARENA_SIZE 4080 #endif +/* Maximum level of recursion */ +#ifndef PERL_MAX_SUB_DEPTH +#define PERL_MAX_SUB_DEPTH 100 +#endif + #endif /* PERL_CORE */ /* We no longer default to creating a new SV for GvSV. |