diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-04-03 13:15:30 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-04-03 13:15:30 +0000 |
commit | 62375a601d6dbbc42fa6d70d83d0a60b73d1b86d (patch) | |
tree | 7cf47279ebe56f251304d9b9d314f62c7066ce0a /perlvars.h | |
parent | e5a119301ff5c8127ffae5b126fbb52e5a78c804 (diff) | |
download | perl-62375a601d6dbbc42fa6d70d83d0a60b73d1b86d.tar.gz |
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).
p4raw-id: //depot/perlio@15698
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perlvars.h b/perlvars.h index 51956795d8..b841719dc2 100644 --- a/perlvars.h +++ b/perlvars.h @@ -56,4 +56,5 @@ PERLVARI(Grunops_dbg, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_debug)) PERLVARI(Gsharehook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nosharing)) PERLVARI(Glockhook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nolocking)) PERLVARI(Gunlockhook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nounlocking)) +PERLVARI(Gthreadhook, thrhook_proc_t, MEMBER_TO_FPTR(Perl_nothreadhook)) |