diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-04-19 01:38:54 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-04-19 01:38:54 +0000 |
commit | 9660f4819671f0b9100e5eabfa988ead3e799a1e (patch) | |
tree | fea5c381d1d486729366e8521bc4a822b90b0c09 /sv.h | |
parent | 379d1ffd1cdc48dce48686458f3153f5dd29f323 (diff) | |
download | perl-9660f4819671f0b9100e5eabfa988ead3e799a1e.tar.gz |
Add CLONE_SKIP() class method to allow individual classes to skip
cloning objects during thread creation
p4raw-id: //depot/perl@24247
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -221,6 +221,7 @@ perform the upgrade if necessary. See C<svtype>. #define SVrepl_EVAL 0x40000000 /* Replacement part of s///e */ +#define SVphv_CLONEABLE 0x08000000 /* for stashes: clone its objects */ #define SVphv_REHASH 0x10000000 /* HV is recalculating hash values */ #define SVphv_SHAREKEYS 0x20000000 /* keys live on shared string table */ #define SVphv_LAZYDEL 0x40000000 /* entry in xhv_eiter must be deleted */ |