summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2010-06-04 16:18:05 +0100
committerDavid Mitchell <davem@iabyn.com>2010-06-04 16:18:05 +0100
commit92f022bbf8c129c6f2379a382f1eaaa5c7bd9f3f (patch)
treef848f69dc55ae2b803d5123060a048bc11d6f73d /sv.c
parent83918a83a5dfae8071d366c33fa37b83aabecfc4 (diff)
downloadperl-92f022bbf8c129c6f2379a382f1eaaa5c7bd9f3f.tar.gz
add PL_signalhook to hook into signal dispatch
This is initially intended for threads::shared and shouldn't (yet) be considered part of the public API.
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 cb85ca6def..c9e6f9e057 100644
--- a/sv.c
+++ b/sv.c
@@ -12451,6 +12451,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_unlockhook = proto_perl->Iunlockhook;
PL_threadhook = proto_perl->Ithreadhook;
PL_destroyhook = proto_perl->Idestroyhook;
+ PL_signalhook = proto_perl->Isignalhook;
#ifdef THREADS_HAVE_PIDS
PL_ppid = proto_perl->Ippid;