diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-13 08:25:53 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-13 08:25:53 +0000 |
commit | abf891c9d7d63ea26a8df7338798c6891691b2b2 (patch) | |
tree | ceeebe265391231a5943490cd85530adeb9604da /ext | |
parent | 3805e0ea5a84a4ac2e90b677398df397caf460cb (diff) | |
download | perl-abf891c9d7d63ea26a8df7338798c6891691b2b2.tar.gz |
We no longer need PL_shared_hek_table
p4raw-id: //depot/perl@24816
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/threads/threads.xs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/threads/threads.xs b/ext/threads/threads.xs index f6b57d636c..03cb590b13 100755 --- a/ext/threads/threads.xs +++ b/ext/threads/threads.xs @@ -615,7 +615,6 @@ Perl_ithread_join(pTHX_ SV *obj) clone_params.stashes = newAV(); clone_params.flags |= CLONEf_JOIN_IN; PL_ptr_table = ptr_table_new(); - PL_shared_hek_table = ptr_table_new(); current_thread = Perl_ithread_get(aTHX); Perl_ithread_set(aTHX_ thread); /* ensure 'meaningful' addresses retain their meaning */ @@ -647,8 +646,6 @@ Perl_ithread_join(pTHX_ SV *obj) SvREFCNT_inc(retparam); ptr_table_free(PL_ptr_table); PL_ptr_table = NULL; - ptr_table_free(PL_shared_hek_table); - PL_shared_hek_table = NULL; } /* We are finished with it */ |