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 /intrpvar.h | |
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 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index bfa613c6e0..eb398fc2c0 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -655,6 +655,8 @@ PERLVARI(Iunlockhook, share_proc_t, MEMBER_TO_FPTR(PERL_UNLOCK_HOOK)) PERLVARI(Ithreadhook, thrhook_proc_t, MEMBER_TO_FPTR(Perl_nothreadhook)) +PERLVARI(Isignalhook, despatch_signals_proc_t, MEMBER_TO_FPTR(Perl_despatch_signals)) + PERLVARI(Ihash_seed, UV, 0) /* Hash initializer */ PERLVARI(Irehash_seed, UV, 0) /* 582 hash initializer */ |