Use reentrant API glibc
[p5sagit/p5-mst-13.2.git] / pod / perl572delta.pod
CommitLineData
43d4bbc8 1=head1 NAME
2
3perl571delta - what's new for perl v5.7.2
4
5=head1 DESCRIPTION
6
7This document describes differences between the 5.7.1 release and the
85.7.2 release.
9
10(To view the differences between the 5.6.0 release and the 5.7.0
11release, see L<perl570delta>. To view the differences between the
125.7.0 release and the 5.7.1 release, see L<perl571delta>.)
13
14=head1 Security Vulnerability Closed
15
16(This change was already made in 5.7.0 but bears repeating here.)
17
18A security vulnerability affecting all Perl versions prior to 5.6.1
19was found in August 2000. The vulnerability does not affect default
20installations and as far as is known affects only the Linux platform.
21
22You should upgrade your Perl to 5.6.1 as soon as possible. Patches
267a12e6 23for earlier releases exist but using the patches require full
24recompilation from the source code anyway, so 5.6.1 is your best
25choice.
26
43d4bbc8 27See http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt
28for more information.
29
30=head1 Incompatible Changes
31
699e893f 32=head2 64-bit platforms and malloc
33
267a12e6 34If your pointers are 64 bits wide, the Perl malloc is no more being
35used because it simply does not work with 8-byte pointers. Also,
36usually the system malloc on such platforms are much better optimized
37for such large memory models than the Perl malloc.
38
d7b629d9 39=head2 AIX Dynaloading
40
41The AIX dynaloading now uses the native dlopen interface of AIX,
42(given the AIX is recent enough) instead of the old emulated interface.
43This will probably break backward compatibility with compiled modules.
44
45=head2 Socket Extension Dynamic in VMS
46
47The Socket extension is now dynamically loaded instead of being
48statically built in. This may or may not be a problem with ancient
49TCP/IP stacks of VMS: we do not know since we weren't able to test
50Perl in such configurations.
51
2796c109 52=head2 Different Definition of the Unicode Character Classes \p{In...}
53
54As suggested by the Unicode consortium, the Unicode character classes
55now prefer I<scripts> as opposed to I<blocks> (as defined by Unicode);
56in Perl, when the C<\p{In....}> and the C<\p{In....}> regular expression
57constructs are used. This has changed the definition of some of those
58character classes.
59
60The difference between scripts and blocks is that scripts are the
61glyphs used by a language or a group of languages, while the blocks
62are more artificial groupings of 256 characters based on the Unicode
63numbering.
64
65In general this change results in more inclusive Unicode character
66classes, but changes to the other direction also do take place:
67for example while the script C<Latin> includes all the Latin
68characters and their various diacritic-adorned versions, it
69does not include the various punctuation or digits (since they
70are not solely C<Latin>).
71
72Changes in the character class semantics may have happened if a script
73and a block happen to have the same name, for example C<Hebrew>.
74In such cases the script wins and C<\p{InHebrew}> now means the script
75definition of Hebrew. The block definition in still available,
76though, by appending C<Block> to the name: C<\p{InHebrewBlock}> means
77what C<\p{InHebrew}> meant in perl 5.6.0. For the full list
78of affected character classes, see L<perlunicode/Blocks>.
79
d7b629d9 80=head2 Deprecations
cbb3fa72 81
82The current user-visible implementation of pseudo-hashes (the weird
83use of the first array element) is deprecated starting from Perl 5.8.0
d7b629d9 84and will be removed in Perl 5.10.0, and the feature will be
85implemented differently. Not only is the current interface rather
86ugly, but the current implementation slows down normal array and hash
d0c93ae9 87use quite noticeably. The C<fields> pragma interface will remain
d7b629d9 88available.
89
90The syntaxes C<@a->[...]> and C<@h->{...}> have now been deprecated.
cbb3fa72 91
267a12e6 92The suidperl is also considered to be too much a risk to continue
93maintaining and the suidperl code is likely to be removed in a future
94release.
95
d0c93ae9 96The C<package;> syntax (C<package> without an argument has been
97deprecated. Its semantics were never that clear and its
98implementation even less so. If you have used that feature to
99disallow all but fully qualified variables, C<use strict;> instead.
100
43d4bbc8 101=head1 Core Enhancements
102
d7b629d9 103In general a lot of fixing has happened in the area of Perl's
104understanding of numbers, both integer and floating point. Since in
105many systems the standard number parsing functions like C<strtoul()>
106and C<atof()> seem to have bugs, Perl tries to work around their
107deficiencies. This results hopefully in more accurate numbers.
267a12e6 108
109=over 4
110
111=item *
112
113The rules for allowing underscores (underbars) in numeric constants
114have been relaxed and simplified: now you can have an underscore
115B<between digits>.
116
117=item *
118
9108dd47 119GMAGIC (right-hand side magic) could in many cases such as string
120concatenation be invoked too many times.
267a12e6 121
122=item *
123
d7b629d9 124Lexicals I: lexicals outside an eval "" weren't resolved
125correctly inside a subroutine definition inside the eval "" if they
126were not already referenced in the top level of the eval""ed code.
127
128=item *
129
130Lexicals II: lexicals leaked at file scope into subroutines that
131were declared before the lexicals.
132
133=item *
134
135Lvalue subroutines can now return C<undef> in list context.
267a12e6 136
137=item *
138
9108dd47 139The C<op_clear> and C<op_null> are now exported.
267a12e6 140
141=item *
142
9108dd47 143A new special regular expression variable has been introduced:
144C<$^N>, which contains the most-recently closed group (submatch).
267a12e6 145
146=item *
147
699e893f 148L<utime> now supports C<utime undef, undef, @files> to change the
d7b629d9 149file timestamps to the current time.
699e893f 150
151=item *
152
267a12e6 153The Perl parser has been stress tested using both random input and
154Markov chain input.
155
d7b629d9 156=item *
157
158C<eval "v200"> now works.
159
160=item *
161
162VMS now works under PerlIO.
163
267a12e6 164=back
165
43d4bbc8 166=head1 Modules and Pragmata
167
b4d12dfd 168=head2 New Modules and Distributions
43d4bbc8 169
267a12e6 170=over 4
171
172=item *
173
699e893f 174L<Attribute::Handlers> - Simpler definition of attribute handlers
175
176=item *
177
178L<ExtUtils::Constant> - generate XS code to import C header constants
179
180=item *
181
4bbcc6e8 182L<I18N::Langinfo> - query locale information
183
184=item *
185
699e893f 186L<I18N::LangTags> - functions for dealing with RFC3066-style language tags
187
188=item *
189
190L<libnet> - a collection of perl5 modules related to network programming
267a12e6 191
d7b629d9 192Perl installation leaves libnet unconfigured, use F<libnetcfg> to configure.
193
267a12e6 194=item *
195
699e893f 196L<List::Util> - selection of general-utility list subroutines
267a12e6 197
198=item *
199
699e893f 200L<Locale::Maketext> - framework for localization
267a12e6 201
202=item *
203
699e893f 204L<Memoize> - Make your functions faster by trading space for time
267a12e6 205
206=item *
207
699e893f 208L<NEXT> - pseudo-class for method redispatch
267a12e6 209
210=item *
211
699e893f 212L<Scalar::Util> - selection of general-utility scalar subroutines
267a12e6 213
214=item *
215
7117b917 216L<Test::More> - yet another framework for writing test scripts
217
218=item *
219
220L<Test::Simple> - Basic utilities for writing tests
221
222=item *
223
699e893f 224L<Time::HiRes> - high resolution ualarm, usleep, and gettimeofday
267a12e6 225
226=item *
227
699e893f 228L<Time::Piece> - Object Oriented time objects
267a12e6 229
d7b629d9 230(Previously known as L<Time::Object>.)
231
b4d12dfd 232=item *
233
234L<Time::Seconds> - a simple API to convert seconds to other date values
235
236=item *
237
238L<Unicode::UCD> - Unicode Character Database
239
267a12e6 240=back
241
43d4bbc8 242=head2 Updated And Improved Modules and Pragmata
243
267a12e6 244=over 4
245
246=item *
247
248L<B::Deparse> module has been significantly enhanced. It now
249can deparse almost all of the standard test suite (so that the
7ebe6671 250tests still succeed). There is a make target "test.deparse"
251for trying this out.
267a12e6 252
253=item *
254
255L<Class::Struct> now assigns the array/hash element if the accessor
256is called with an array/hash element as the B<sole> argument.
257
258=item *
259
260L<Cwd> extension is now (even) faster.
261
262=item *
263
264L<DB_File> extension has been updated to version 1.77.
265
266=item *
267
268L<Fcntl>, L<Socket>, and L<Sys::Syslog> have been rewritten to use the
269new-style constant dispatch section (see L<ExtUtils::Constant>).
270
271=item *
272
699e893f 273L<File::Find> is now (again) reentrant. It also has been made
274more portable.
275
276=item *
277
267a12e6 278L<File::Glob> now supports C<GLOB_LIMIT> constant to limit the
279size of the returned list of filenames.
280
699e893f 281=item *
267a12e6 282
d7b629d9 283L<IO::Socket::INET> now supports C<LocalPort> of zero (usually meaning
284that the operating system will make one up.)
285
286=item *
287
288The L<vars> pragma now supports declaring fully qualified variables.
289(Something that C<our()> does not and will not support.)
699e893f 290
291=back
43d4bbc8 292
293=head1 Utility Changes
294
267a12e6 295=over 4
296
297=item *
298
699e893f 299The F<emacs/e2ctags.pl> is now much faster.
300
301=item *
302
d7b629d9 303L<h2ph> now supports C trigraphs.
304
305=item *
306
267a12e6 307L<h2xs> uses the new L<ExtUtils::Constant> module which will affect
308newly created extensions that define constants. Since the new code is
309more correct (if you have two constants where the first one is a
310prefix of the second one, the first constant B<never> gets defined),
311less lossy (it uses integers for integer constant, as opposed to the
312old code that used floating point numbers even for integer constants),
313and slightly faster, you might want to consider regenerating your
314extension code (the new scheme makes regenerating easy).
315
316=item *
317
699e893f 318L<libnetcfg> has been added to configure the libnet.
267a12e6 319
320=item *
321
322The F<Pod::Html> (and thusly L<pod2html>) now allows specifying
323a cache directory.
324
325=back
326
43d4bbc8 327=head1 New Documentation
328
267a12e6 329=over 4
330
331=item *
332
333L<Locale::Maketext::TPJ13> is an article about software localization,
334originally published in The Perl Journal #13, republished here with
335kind permission.
336
337=item *
338
339More README.$PLATFORM files have been converted into pod, which also
340means that they also be installed as perl$PLATFORM documentation
341files. The new files are L<perlapollo>, L<perlbeos>, L<perldgux>,
699e893f 342L<perlhurd>, L<perlmint>, L<perlnetware>, L<perlplan9>, L<perlqnx>,
343and L<perltru64>.
267a12e6 344
345=item *
346
347The F<Todo> and F<Todo-5.6> files have been merged into L<perltodo>.
348
349=item *
350
7ebe6671 351Use of the F<gprof> tool to profile Perl has been documented in
352L<perlhack>. There is a make target "perl.gprof" for generating a
353gprofiled Perl executable.
267a12e6 354
355=back
356
43d4bbc8 357=head1 Installation and Configuration Improvements
358
359=head2 New Or Improved Platforms
360
267a12e6 361=over 4
362
363=item *
364
7ebe6671 365AIX should now work better with gcc. Also longdouble support in AIX
366should be better now. See L<perlaix>.
267a12e6 367
368=item *
369
370AtheOS (http://www.atheos.cx/) is a new platform.
371
372=item *
373
7ebe6671 374DG/UX platform now supports the 5.005-style threads. See L<perldgux>.
267a12e6 375
376=item *
377
7ebe6671 378Several MacOS (Classic) portability patches have been applied. We
379hope to get a fully working port by 5.8.0. (The remaining problems
380relate to the changed IO model of Perl.) See L<perlmacos>.
267a12e6 381
382=item *
383
699e893f 384MacOS X (or Darwin) should now be able to build Perl even on HFS+
385filesystems. (The case-insensitivity confused the Perl build process.)
267a12e6 386
387=item *
388
7ebe6671 389NetWare from Novell is now supported. See L<perlnetware>.
267a12e6 390
391=item *
392
393The Amdahl UTS UNIX mainframe platform is now supported.
394
395=back
396
43d4bbc8 397=head2 Generic Improvements
398
267a12e6 399=over 4
400
401=item *
402
267a12e6 403In AFS installations one can configure the root of the AFS to be
404somewhere else than the default F</afs> by using the Configure
405parameter C<-Dafsroot=/some/where/else>.
406
407=item *
408
409The version of Berkeley DB used when the Perl (and, presumably, the
410DB_File extension) was built is now available as
411C<@Config{qw(db_version_major db_version_minor db_version_patch)}>
412from Perl and as C<DB_VERSION_MAJOR_CFG DB_VERSION_MINOR_CFG
413DB_VERSION_PATCH_CFG> from C.
414
415=item *
416
699e893f 417The Thread extension is now not built at all under ithreads
418(C<Configure -Duseithreads>) because it wouldn't work anyway (the
419Thread extension requires being Configured with C<-Duse5005threads>).
267a12e6 420
421=item *
422
423The C<B::Deparse> compiler backend has been so significantly improved
424that almost the whole Perl test suite passes after being deparsed. A
425make target has been added to help in further testing: C<make test.deparse>.
426
427=back
428
43d4bbc8 429=head1 Selected Bug Fixes
430
699e893f 431=over 5
432
433=item *
434
435The autouse pragma didn't work for Multi::Part::Function::Names.
436
437=item *
438
439The behaviour of non-decimal but numeric string constants such as
440"0x23" was platform-dependent: in some platforms that was seen as 35,
441in some as 0, in some as a floating point number (don't ask). This
442was caused by Perl using the operating system libraries in a situation
443where the result of the string to number conversion is undefined: now
444Perl consistently handles such strings as zero in numeric contexts.
445
446=item *
447
448L<dprofpp> -R didn't work.
449
450=item *
451
452PERL5OPT with embedded spaces didn't work.
453
454=item *
455
456L<Sys::Syslog> ignored the C<LOG_AUTH> constant.
457
458=back
459
43d4bbc8 460=head2 Platform Specific Changes and Fixes
461
267a12e6 462=over 4
463
464=item *
465
466Some versions of glibc have a broken modfl(). This affects builds
467with C<-Duselongdouble>. This version of Perl detects this brokenness
468and has a workaround for it. The glibc release 2.2.2 is known to have
469fixed the modfl() bug.
470
471=back
472
43d4bbc8 473=head1 New or Changed Diagnostics
474
267a12e6 475=over 4
476
477=item *
478
479In the regular expression diagnostics the C<E<lt>E<lt> HERE> marker
480introduced in 5.7.0 has been changed to be C<E<lt>-- HERE> since too
481many people found the C<E<lt>E<lt>> to be too similar to here-document
482starters.
483
484=item *
485
486If you try to L<perlfunc/pack> a number less than 0 or larger than 255
487using the C<"C"> format you will get an optional warning. Similarly
488for the C<"c"> format and a number less than -128 or more than 127.
489
490=item *
491
492Certain regex modifiers such as C<(?o)> make sense only if applied to
493the entire regex. You will an optional warning if you try to do otherwise.
494
495=item *
496
497Using arrays or hashes as references (e.g. C<%foo->{bar}> has been
498deprecated for a while. Now you will get an optional warning.
499
500=back
501
9108dd47 502=head1 Source Code Enhancements
503
504=head2 MAGIC constants
505
506The MAGIC constants (e.g. C<'P'>) have been macrofied
507(e.g. C<PERL_MAGIC_TIED>) for better source code readability
508and maintainability.
509
510=head2 Better commented code
511
512F<perly.c>, F<sv.c>, and F<sv.h> have now been extensively commented.
43d4bbc8 513
514=head2 Regex pre-/post-compilation items matched up
515
516The regex compiler now maintains a structure that identifies nodes in
517the compiled bytecode with the corresponding syntactic features of the
518original regex expression. The information is attached to the new
519C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
520complete information.
521
9108dd47 522=head2 gcc -Wall
523
524The C code has been made much more C<gcc -Wall> clean. Some warning
525messages still remain, though, so if you are compiling with gcc you
526will see some warnings about dubious practices. The warnings are
527being worked on.
528
43d4bbc8 529=head1 New Tests
530
267a12e6 531Several new tests have been added, especially for the F<lib> subsection.
532
699e893f 533The tests are now reported in a different order than in earlier Perls.
534(This happens because the test scripts from under t/lib have been moved
535to be closer to the library/extension they are testing.)
267a12e6 536
43d4bbc8 537=head1 Known Problems
538
539Note that unlike other sections in this document (which describe
540changes since 5.7.0) this section is cumulative containing known
541problems for all the 5.7 releases.
542
81633404 543=head2 AIX
544
545=over 4
546
547=item *
548
549If Perl is configured to use long doubles the op/int subtests 13 and
55014 and the ext/POSIX subtest 14 may fail.
551
552=item *
553
554If Perl is configured to use threads the op/magic subtest 28 may fail.
555
556=item *
557
558vac 5.0.0.0 May Produce Buggy Code For Perl
43d4bbc8 559
560The AIX C compiler vac version 5.0.0.0 may produce buggy code,
561resulting in few random tests failing, but when the failing tests
562are run by hand, they succeed. We suggest upgrading to at least
563vac version 5.0.1.0, that has been known to compile Perl correctly.
564"lslpp -L|grep vac.C" will tell you the vac version.
565
81633404 566=back
567
d7b629d9 568=head2 Amiga Perl Invoking Mystery
569
570One cannot call Perl using the C<volume:> syntax, that is, C<perl -v>
571works, but for example C<bin:perl -v> doesn't. The exact reason is
572known but the current suspect is the F<ixemul> library.
573
43d4bbc8 574=head2 lib/ftmp-security tests warn 'system possibly insecure'
575
576Don't panic. Read INSTALL 'make test' section instead.
577
19d94770 578=head2 Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
81633404 579
580The subtests 11 and 12 sometimes fail and sometimes work.
581
582=head2 HP-UX lib/io_multihomed Fails When LP64-Configur
43d4bbc8 583
584The lib/io_multihomed test may hang in HP-UX if Perl has been
585configured to be 64-bit. Because other 64-bit platforms do not hang in
586this test, HP-UX is suspect. All other tests pass in 64-bit HP-UX. The
587test attempts to create and connect to "multihomed" sockets (sockets
588which have multiple IP addresses).
589
81633404 590=head2 HP-UX lib/posix Subtest 9 Fails When LP64-Configured
43d4bbc8 591
592If perl is configured with -Duse64bitall, the successful result of the
593subtest 10 of lib/posix may arrive before the successful result of the
594subtest 9, which confuses the test harness so much that it thinks the
595subtest 9 failed.
596
43d4bbc8 597=head2 Linux With Sfio Fails op/misc Test 48
598
599No known fix.
600
ee9f9f3a 601=head2 OS/390
602
603OS/390 has rather many test failures but the situation is actually
604better than it was in 5.6.0, it's just that so many new modules and
605tests have been added.
606
607 Failed Test Stat Wstat Total Fail Failed List of Failed
608 -----------------------------------------------------------------------------
609 ../ext/B/Deparse.t 14 1 7.14% 14
610 ../ext/B/Showlex.t 1 1 100.00% 1
611 ../ext/Encode/Encode/Tcl.t 610 13 2.13% 592 594 596 598
612 600 602 604-610
613 ../ext/IO/lib/IO/t/io_unix.t 113 28928 5 3 60.00% 3-5
614 ../ext/POSIX/POSIX.t 29 1 3.45% 14
615 ../ext/Storable/t/lock.t 255 65280 5 3 60.00% 3-5
616 ../lib/locale.t 129 33024 117 19 16.24% 99-117
617 ../lib/warnings.t 434 1 0.23% 75
618 ../lib/ExtUtils.t 27 1 3.70% 25
619 ../lib/Math/BigInt/t/bigintpm.t 1190 1 0.08% 1145
620 ../lib/Unicode/UCD.t 81 48 59.26% 1-16 49-64 66-81
621 ../lib/User/pwent.t 9 1 11.11% 4
622 op/pat.t 660 6 0.91% 242-243 424-425
623 626-627
624 op/split.t 0 9 ?? ?? % ??
625 op/taint.t 174 3 1.72% 156 162 168
626 op/tr.t 70 3 4.29% 50 58-59
627 Failed 16/422 test scripts, 96.21% okay. 105/23251 subtests failed, 99.55% okay.
628
c4b279ff 629=head2 op/sprintf tests 129 and 130
43d4bbc8 630
631The op/sprintf tests 129 and 130 are known to fail on some platforms.
632Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
633The failing platforms do not comply with the ANSI C Standard, line
63419ff on page 134 of ANSI X3.159 1989 to be exact. (They produce
635something else than "1" and "-1" when formatting 0.6 and -0.6 using
636the printf format "%.0f", most often they produce "0" and "-0".)
637
638=head2 Failure of Thread tests
639
45215428 640B<Note that support for 5.005-style threading remains experimental.>
641
642The following tests are known to fail due to fundamental problems in
643the 5.005 threading implementation. These are not new failures--Perl
6445.005_0x has the same bugs, but didn't have these tests.
645
c4b279ff 646 lib/autouse.t 4
647 t/lib/thr5005.t 19-20
648
81633404 649=head2 UNICOS
650
651=over 4
652
653=item *
654
655ext/POSIX/sigaction subtests 6 and 13 may fail.
656
657=item *
658
659lib/ExtUtils may spuriously claim that subtest 28 failed,
660which is interesting since the test only has 27 tests.
661
662=item *
663
664Numerous numerical test failures
c4b279ff 665
666 op/numconvert 209,210,217,218
81633404 667 op/override 7
c4b279ff 668 ext/Time/HiRes/HiRes 9
669 lib/Math/BigInt/t/bigintpm 1145
670 lib/Math/Trig 25
671
672These tests fail because of yet unresolved floating point inaccuracies.
673
81633404 674=back
675
81633404 676=head2 UTS
677
678Many floating point inaccuracies:
679
0aa7ccc3 680 op/numconvert 511,657,658,659,665-667,831,991,1151
681 op/pack 10,22,149,156
682 op/sprintf 8,10,13,102-107,134-135,146-153,159-162
683 lib/Math/BigInt/bigintpm 1145,1183
684 lib/Math/Complex 250,257,514,521,722-724,
685 934,935,945,949,955,956,975,976
686 ext/POSIX/POSIX 14
687
688=head2 VMS
689
ee9f9f3a 690Rather many tests are failing in VMS but that actually more tests
691succeed in VMS than they used to, it's just that there are many,
692many more tests than there used to be.
693
694Here are the known failures from some compiler/platform combinations.
695
0aa7ccc3 696DEC C V5.3-006 on OpenVMS VAX V6.2
697
698 [-.ext.list.util.t]tainted..............FAILED on test 3
699 [-.ext.posix]sigaction..................FAILED on test 7
50bd9457 700 [-.ext.time.hires]hires.................FAILED on test 14
0aa7ccc3 701 [-.lib.file.find]taint..................FAILED on test 17
702 [-.lib.math.bigint.t]bigintpm...........FAILED on test 1183
703 [-.lib.test.simple.t]exit...............FAILED on test 1
704 [.lib]vmsish............................FAILED on test 13
705 [.op]sprintf............................FAILED on test 12
706 Failed 8/399 tests, 91.23% okay.
707
708DEC C V6.0-001 on OpenVMS Alpha V7.2-1
709
710 [-.ext.list.util.t]tainted..............FAILED on test 3
711 [-.lib.file.find]taint..................FAILED on test 17
712 [-.lib.test.simple.t]exit...............FAILED on test 1
713 [.lib]vmsish............................FAILED on test 13
714 Failed 4/399 tests, 92.48% okay.
81633404 715
20a07785 716Compac C V6.4-005 on OpenVMS Alpha 7.2.1
717
718 [-.ext.b]showlex........................FAILED on test 1
719 [-.ext.list.util.t]tainted..............FAILED on test 3
720 [-.lib.file.find]taint..................FAILED on test 17
721 [-.lib.test.simple.t]exit...............FAILED on test 1
722 [.lib]vmsish............................FAILED on test 13
723 [.op]misc...............................FAILED on test 49
724 Failed 6/401 tests, 92.77% okay.
725
d0c93ae9 726=head2 Win32
727
728In multi-CPU boxes there are some problems with the I/O buffering:
729some output may appear twice.
730
43d4bbc8 731=head2 Localising a Tied Variable Leaks Memory
732
733 use Tie::Hash;
734 tie my %tie_hash => 'Tie::StdHash';
735
736 ...
737
738 local($tie_hash{Foo}) = 1; # leaks
739
740Code like the above is known to leak memory every time the local()
741is executed.
742
743=head2 Self-tying of Arrays and Hashes Is Forbidden
744
745Self-tying of arrays and hashes is broken in rather deep and
746hard-to-fix ways. As a stop-gap measure to avoid people from getting
747frustrated at the mysterious results (core dumps, most often) it is
748for now forbidden (you will get a fatal error even from an attempt).
749
699e893f 750=head2 Variable Attributes are not Currently Usable for Tieing
751
752This limitation will hopefully be fixed in future. (Subroutine
753attributes work fine for tieing, see L<Attribute::Handlers>).
754
43d4bbc8 755=head2 Building Extensions Can Fail Because Of Largefiles
756
757Some extensions like mod_perl are known to have issues with
758`largefiles', a change brought by Perl 5.6.0 in which file offsets
759default to 64 bits wide, where supported. Modules may fail to compile
760at all or compile and work incorrectly. Currently there is no good
761solution for the problem, but Configure now provides appropriate
762non-largefile ccflags, ldflags, libswanted, and libs in the %Config
763hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
764having problems can try configuring themselves without the
765largefileness. This is admittedly not a clean solution, and the
766solution may not even work at all. One potential failure is whether
767one can (or, if one can, whether it's a good idea) link together at
768all binaries with different ideas about file offsets, all this is
769platform-dependent.
770
771=head2 The Compiler Suite Is Still Experimental
772
773The compiler suite is slowly getting better but is nowhere near
774working order yet.
775
81633404 776=head2 The Long Double Support is Still Experimental
777
778The ability to configure Perl's numbers to use "long doubles",
779floating point numbers of hopefully better accuracy, is still
780experimental. The implementations of long doubles are not yet
781widespread and the existing implementations are not quite mature
782or standardised, therefore trying to support them is a rare
783and moving target. The gain of more precision may also be offset
784by slowdown in computations (more bits to move around, and the
785operations are more likely to be executed by less optimised
786libraries).
787
43d4bbc8 788=head1 Reporting Bugs
789
790If you find what you think is a bug, you might check the articles
791recently posted to the comp.lang.perl.misc newsgroup and the perl
792bug database at http://bugs.perl.org. There may also be
793information at http://www.perl.com/perl/, the Perl Home Page.
794
795If you believe you have an unreported bug, please run the B<perlbug>
796program included with your release. Be sure to trim your bug down
797to a tiny but sufficient test case. Your bug report, along with the
798output of C<perl -V>, will be sent off to perlbug@perl.org to be
799analysed by the Perl porting team.
800
801=head1 SEE ALSO
802
803The F<Changes> file for exhaustive details on what changed.
804
805The F<INSTALL> file for how to build Perl.
806
807The F<README> file for general stuff.
808
809The F<Artistic> and F<Copying> files for copyright information.
810
811=head1 HISTORY
812
813Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
814from The Perl Porters and Perl Users submitting feedback and patches.
815
816Send omissions or corrections to <F<perlbug@perl.org>>.
817
818=cut