summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* We're going round in circles with pp_sys.cAndy Lester2005-06-2711-96/+112
| | | | | | | Message-ID: <20050627180659.GB29744@petdance.com> (edited) p4raw-id: //depot/perl@24997
* Fix installation of ptar(1) manpage.Rafael Garcia-Suarez2005-06-271-2/+0
| | | | | The __END__ was making the POD being ignored by pod2man. p4raw-id: //depot/perl@24996
* Make Carp.pm even lighter (and Carp::Heavy even heavier)Dave Mitchell2005-06-276-254/+236
| | | | | Also move carp.pm pod to carp.pod p4raw-id: //depot/perl@24995
* Silence compiler warning in SDBM_FileSteve Hay2005-06-271-1/+1
| | | | | | | Unless I'm missing something it looks like "key" actually is used, and the "key = key" assignment causes bcc32 to complain about use before definition! p4raw-id: //depot/perl@24994
* XSLoader for Sys::SyslogAlexey Tourbin2005-06-271-4/+4
| | | | | Message-ID: <20050626043204.GA31585@solemn.turbinal.org> p4raw-id: //depot/perl@24993
* Oops (fix previous fix).Rafael Garcia-Suarez2005-06-275-5/+5
| | | p4raw-id: //depot/perl@24992
* Fix tests of Filter::Simple 0.82 in the coreRafael Garcia-Suarez2005-06-275-5/+5
| | | p4raw-id: //depot/perl@24991
* Upgrade to Filter::Simple 0.82Rafael Garcia-Suarez2005-06-2711-330/+413
| | | p4raw-id: //depot/perl@24990
* Upgrade to Test::Harness 2.52Rafael Garcia-Suarez2005-06-273-17/+58
| | | p4raw-id: //depot/perl@24989
* Upgrade to Time::HiRes 1.70Rafael Garcia-Suarez2005-06-273-3/+17
| | | p4raw-id: //depot/perl@24988
* Suppress warnings about a clash between redefined malloc and theAndy Lester2005-06-271-1/+1
| | | | | | | | use of __attribute__malloc__ Subject: Re: Fun with __attribute__malloc__ Message-ID: <20050624171159.GB29590@petdance.com> p4raw-id: //depot/perl@24987
* Tweak the child dump socket protocol to return error messages to theNicholas Clark2005-06-261-32/+92
| | | | | parent so that it can display what went wrong. p4raw-id: //depot/perl@24986
* Upgrade to Time::HiRes 1.69Rafael Garcia-Suarez2005-06-263-4/+66
| | | p4raw-id: //depot/perl@24985
* When using DEBUG_LEAKING_SCALARS_FORK_DUMP it's possible to causeNicholas Clark2005-06-261-17/+93
| | | | | | | | | indefinite hangs when the debugging child holds open Perl_debug_log, and it happens to be a file descriptor that is one end of a pipe, with a process sitting at the other end waitng for EOF. So close all descriptors in the child *including* Perl_debug_log, and pass it back in over the control socket if it's needed. p4raw-id: //depot/perl@24984
* Need to pass a my_perl to S_my_localtime to make threaded builds build.Nicholas Clark2005-06-261-2/+2
| | | p4raw-id: //depot/perl@24983
* Add a sanity check to Config::AUTOLOAD to prevent infinte loops ifNicholas Clark2005-06-251-1/+3
| | | | | Configure_heavy.pl gets truncated. p4raw-id: //depot/perl@24982
* On OS X to use perl's malloc need to USE_PERL_SBRK and emulate sbrk()Nicholas Clark2005-06-251-0/+3
| | | | | | using system malloc, because sbrk() stops giving us memory after about 14Mb. p4raw-id: //depot/perl@24981
* Need to skip exporting PL_dumper_fd unless it is used.Nicholas Clark2005-06-251-0/+6
| | | p4raw-id: //depot/perl@24980
* If forking during global destruction, the child needs to close allNicholas Clark2005-06-251-1/+24
| | | | | | unused file descriptors, else it can cause other processes to hang because it accidentally holds open pipes and sockets. p4raw-id: //depot/perl@24979
* Upgrade to Unicode::Collate 0.51Rafael Garcia-Suarez2005-06-243-26/+70
| | | p4raw-id: //depot/perl@24978
* Fix typo in win32.cSteve Hay2005-06-241-1/+1
| | | | | Doesn't fix bcc32 + USE_LARGE_FILES, though :-( p4raw-id: //depot/perl@24977
* Extend DEBUG_LEAKING_SCALARS_FORK_DUMP so it can also dump scalarsNicholas Clark2005-06-248-34/+77
| | | | | | which become unreferenced. This is less likely to be successful. The #define needs a better name. p4raw-id: //depot/perl@24976
* Stop '"__attribute__format__" redefined' warnings from gcc on Win32Steve Hay2005-06-242-31/+40
| | | p4raw-id: //depot/perl@24975
* Make opendir() filename const in Win32-land & friendsSteve Hay2005-06-2410-11/+11
| | | | | | | | That fact that it wasn't const already was highlighted by a warning from pp_open_dir() generated by change 24743. Rather than undo the const change in pp_open_dir(), this seems to make more sense. Hope I haven't broken Netware or WinCE. p4raw-id: //depot/perl@24974
* Need to do some sort of die/warn to get the "global destruction"Nicholas Clark2005-06-241-1/+3
| | | | | text if the bug is still present. p4raw-id: //depot/perl@24973
* Fix t\op\gv.t on Win32Steve Hay2005-06-241-2/+3
| | | p4raw-id: //depot/perl@24972
* Remove cargo-culted binmode.Rafael Garcia-Suarez2005-06-241-2/+0
| | | p4raw-id: //depot/perl@24971
* Fix Archive-Tar tests on Win32 following change 24954Steve Hay2005-06-241-0/+1
| | | p4raw-id: //depot/perl@24970
* Workaround localtime edge case where TZ makes time go beyondH.Merijn Brand2005-06-241-0/+51
| | | | | the defined working range (AIX 5.2) p4raw-id: //depot/perl@24969
* change 24967 got the #endif in the wrong placeDave Mitchell2005-06-231-1/+1
| | | p4raw-id: //depot/perl@24968
* don't repopulate PADTMP slots with null SVs when freeing opsDave Mitchell2005-06-233-6/+13
| | | p4raw-id: //depot/perl@24967
* Remove the reference loop between symbol tables and typeglobs.Nicholas Clark2005-06-238-60/+110
| | | | | Typeglobs now have a weak reference onto their symbol table. p4raw-id: //depot/perl@24966
* Pre-YAPC consting funAndy Lester2005-06-2313-181/+196
| | | | | Message-ID: <20050623190423.GA13835@petdance.com> p4raw-id: //depot/perl@24965
* Take a larger margin to prevent 'X' failures in smokesH.Merijn Brand2005-06-231-1/+1
| | | | | | I was able to get warnings on HP-UX 10.20 every 2nd to 3rd run when reps was still 10000. With 15000 I didn't get a single warning p4raw-id: //depot/perl@24964
* Warning suppression.Rafael Garcia-Suarez2005-06-231-1/+1
| | | p4raw-id: //depot/perl@24963
* The current implementation of :unique is fundamentally flawed,Nicholas Clark2005-06-236-88/+23
| | | | | | | | because declaring a scalar READONLY does not stop it being modified. Hence the current implementation of :unique is *not threadsafe* D'oh! Better implementations welcome. p4raw-id: //depot/perl@24962
* Fix Archive::Tar test when perl is built with -DmksymlinksRafael Garcia-Suarez2005-06-231-1/+1
| | | p4raw-id: //depot/perl@24961
* Re: [perl #9741] possible problem with File::FindSteve Peters2005-06-231-69/+77
| | | | | Message-ID: <20050618042714.GA29589@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@24960
* Add a define PERL_POISON which tries to trip up anything accessingNicholas Clark2005-06-236-11/+19
| | | | | | freed or uninitialised memory. Currently only Poison()s freed pointers. p4raw-id: //depot/perl@24959
* Indent some of the #ifdef/#define/#endif to make the nesting clearer.Nicholas Clark2005-06-231-54/+53
| | | | | Simplify SvPV_free slightly. p4raw-id: //depot/perl@24958
* This dummy test didn't passRafael Garcia-Suarez2005-06-231-0/+2
| | | p4raw-id: //depot/perl@24957
* Add a pseudo-test to clean up data files for Archive::Tar testsRafael Garcia-Suarez2005-06-232-0/+10
| | | p4raw-id: //depot/perl@24956
* Remove test that relies on Test::PODRafael Garcia-Suarez2005-06-232-19/+0
| | | p4raw-id: //depot/perl@24955
* Remove binary files, add a pseudo-test in Archive::Tar to generate themRafael Garcia-Suarez2005-06-236-4/+686
| | | p4raw-id: //depot/perl@24954
* Silence bcc32 compiler warnings following change 24945Steve Hay2005-06-232-3/+3
| | | | | ("Possible use of '%s' before definition") p4raw-id: //depot/perl@24953
* Re-initialise PL_curcop to &PL_compiling before destroying the optree.Nicholas Clark2005-06-231-1/+5
| | | p4raw-id: //depot/perl@24952
* Re: [perl #36350] unstable sorting for use integer; sort { $b <=> $a } @foo Salvador FandiƱo2005-06-231-21/+9
| | | | | Message-ID: <20050621181658.5977.qmail@lists.develooper.com> p4raw-id: //depot/perl@24951
* Oops! Change 24946 wasn't quite rightSteve Hay2005-06-231-1/+1
| | | p4raw-id: //depot/perl@24950
* Add handling of NV_ZERO_IS_ALLBITS_ZERO for Netware and epocRafael Garcia-Suarez2005-06-233-0/+7
| | | p4raw-id: //depot/perl@24949
* Define d_nv_zero_is_allbits_zero for symbianRafael Garcia-Suarez2005-06-231-0/+1
| | | | | (noticed by Jarkko) p4raw-id: //depot/perl@24948