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 | a227dc4778e24da2c5bc2ffad02a89310996ff78 (patch) | |
tree | ceeebe265391231a5943490cd85530adeb9604da /ext/threads | |
parent | 66b4b7e7e87f9998c0916534e3aa320f87a5174e (diff) | |
download | perl-a227dc4778e24da2c5bc2ffad02a89310996ff78.tar.gz |
We no longer need PL_shared_hek_table
p4raw-id: //depot/perl@24816
Diffstat (limited to 'ext/threads')
-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 */ |