diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-01 14:31:37 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-01 14:31:37 +0000 |
commit | a24d89c9b4c1e58840711d560a34763a7ca91051 (patch) | |
tree | d13f807afb7745e725f87a7d9fb37f52313ab56e /proto.h | |
parent | 9b2c10f1c598e1e6a0db9d0b301c9559b079b129 (diff) | |
download | perl-a24d89c9b4c1e58840711d560a34763a7ca91051.tar.gz |
Propagate cop_hints inside string evals. For the unthreaded case this
is easy. For the threaded case it's not, because the current OP may
be shared with another thread, so solve this by copying the hints
chain.
p4raw-id: //depot/perl@27659
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -721,6 +721,7 @@ PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV* hv, IV newmax) __attribute__nonnull__(pTHX_1); */ #ifdef USE_ITHREADS +PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_copy(pTHX_ const struct refcounted_he *he); PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_dup(pTHX_ const struct refcounted_he *const he, CLONE_PARAMS* param) __attribute__nonnull__(pTHX_2); |