diff options
author | David Mitchell <davem@iabyn.com> | 2010-06-04 16:18:05 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-06-04 16:18:05 +0100 |
commit | 92f022bbf8c129c6f2379a382f1eaaa5c7bd9f3f (patch) | |
tree | f848f69dc55ae2b803d5123060a048bc11d6f73d /sv.c | |
parent | 83918a83a5dfae8071d366c33fa37b83aabecfc4 (diff) | |
download | perl-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |