diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-03 13:35:58 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-03 13:35:58 +0000 |
commit | 17689f3f46f6098d3396653de7f7540c2363fa0f (patch) | |
tree | 1885b1a9b3771fce829c77483a36d2996b654f27 /perl.h | |
parent | 286b86d383af73b65e6b3ca67b665bf0ca7d3dce (diff) | |
parent | 62375a601d6dbbc42fa6d70d83d0a60b73d1b86d (diff) | |
download | perl-17689f3f46f6098d3396653de7f7540c2363fa0f.tar.gz |
Integrate perlio:
[ 15698]
Fix segfaults when mainthread exits with other threads running:
- track number of running threads
- if main thread calls perl_destruct() with other threads running
skip most of cleanup (with a warning).
[ 15696]
Add -hiertype option to xsubpp for easier mapping C++ with namespaces.
p4raw-link: @15698 on //depot/perlio: 62375a601d6dbbc42fa6d70d83d0a60b73d1b86d
p4raw-link: @15696 on //depot/perlio: 0ab125c1e00cef4eab6989366621d77be6d38567
p4raw-id: //depot/perl@15699
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2797,6 +2797,7 @@ typedef Sighandler_t Sigsave_t; typedef int (CPERLscope(*runops_proc_t)) (pTHX); typedef void (CPERLscope(*share_proc_t)) (pTHX_ SV *sv); +typedef int (CPERLscope(*thrhook_proc_t)) (pTHX); typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX); /* _ (for $_) must be first in the following list (DEFSV requires it) */ |