This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
9b9df0b
)
perldelta for cop_stashoff
author
Father Chrysostomos
<sprout@cpan.org>
Fri, 8 Jun 2012 06:17:22 +0000
(23:17 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Fri, 8 Jun 2012 06:51:11 +0000
(23:51 -0700)
pod/perldelta.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perldelta.pod
b/pod/perldelta.pod
index
66d3f34
..
887f2b9
100644
(file)
--- a/
pod/perldelta.pod
+++ b/
pod/perldelta.pod
@@
-385,6
+385,13
@@
The C<study> function was made a no-op in 5.16. It was simply disabled via
a C<return> statement; the code was left in place. Now the code supporting
what C<study> used to do has been removed.
+=item *
+
+Under threaded perls, there is no longer a separate PV allocated for every
+COP to store its package name (C<< cop->stashpv >>). Instead, there is an
+offset (C<< cop->stashoff >>) into the new C<PL_stashpad> array, which
+holds stash pointers.
+
=back
=head1 Selected Bug Fixes