summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorBen Morrow <ben@morrow.me.uk>2009-11-26 17:18:29 +0000
committerRafael Garcia-Suarez <rgs@consttype.org>2010-07-12 10:40:47 +0200
commit1930840b26541ab67ff111a47ceab4753d798617 (patch)
treef27bbe5e370d51ad4f243eea906dc3b546f05efc /sv.c
parent3e2d3818e517e0037c1ab6a482f31d50271f9e27 (diff)
downloadperl-1930840b26541ab67ff111a47ceab4753d798617.tar.gz
Generic hooks into Perl_block_{start,end}.
These take the form of a vtable pushed onto the new PL_blockhooks array. This could probably do with a API around it later. Separate pre_end and post_end hooks are needed to capture globals before the stack is unwound (like needblockscope in the existing code). The intention is that once a vtable is installed it never gets removed, so where necessary extensions using this will need to use a hinthv element to determine whether to do anything or not.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sv.c b/sv.c
index 2f130910b5..3e99d9c1e4 100644
--- a/sv.c
+++ b/sv.c
@@ -12649,6 +12649,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
}
PL_registered_mros = hv_dup_inc(proto_perl->Iregistered_mros, param);
+ PL_blockhooks = av_dup_inc(proto_perl->Iblockhooks, param);
/* Call the ->CLONE method, if it exists, for each of the stashes
identified by sv_dup() above.