| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0109151659060.6089-100000@mako.covalent.net>
p4raw-id: //depot/perl@12036
|
|
|
|
|
|
|
| |
(??{CODE}) regex
Message-Id: <200109091741.f89HfsM18534@crypt.compulink.co.uk>
p4raw-id: //depot/perl@12027
|
|
|
|
|
| |
Message-ID: <3B9D4F06.14433.2C37644@localhost>
p4raw-id: //depot/perl@11989
|
|
|
|
|
|
| |
PM_GETRE and friends. No more warnings with 64bit
IVs and 32bit pointers.
p4raw-id: //depot/perl@11970
|
|
|
|
|
|
|
| |
(was Re: FreeBSD MD5 crypt? Re: crypt/hex/oct and Unicode?))
Message-ID: <20010904224250.P25120@plum.flirble.org>
p4raw-id: //depot/perl@11874
|
|
|
|
|
| |
Silly thinko pointed out by Sarathy.
p4raw-id: //depot/perl@11872
|
|
|
|
|
|
|
|
|
|
| |
remove age-old UNICOS "workaround" that introduces a static, and
hence an egregious race condition for threaded builds (*sigh*
beats me why this kludge wasn't guarded by a UNICOS-specific
#define *sigh*)
p4raw-link: @11801 on //depot/maint-5.6/perl: 5af842af85d9b6d73b06373813fcf66e62026afd
p4raw-id: //depot/perl@11804
|
|
|
|
|
| |
working in 5.7.x
p4raw-id: //depot/perl@11803
|
|
|
|
|
|
| |
on the pad. Fixes coredumps in cleanups introduced by
Change 11755
p4raw-id: //depot/perl@11790
|
|
|
|
|
|
| |
Thanks to H. Merijn Brand for the patch.
Some of the comments and or guards might be removable in perl.h now.
p4raw-id: //depot/perl@11758
|
|
|
|
|
|
|
|
| |
introcued by #11274.
PL_regex_padav now has an AV as it's first entry with a list
of freed regex_padav slots that it will reuse on creating
new PMOPs.
p4raw-id: //depot/perl@11755
|
|
|
|
|
| |
running to perl_destruct, changes prototype of perl_destruct to return exitstatus.
p4raw-id: //depot/perl@11702
|
|
|
|
|
|
|
| |
need to
p4raw-link: @10334 on //depot/perl: 659ca9ea8f57ee52a52802839584b7208ad161b7
p4raw-id: //depot/perl@11693
|
|
|
|
|
| |
Message-ID: <B79D6661.3068%arthur@contiller.se>
p4raw-id: //depot/perl@11658
|
|
|
|
|
| |
Message-ID: <03fd01c122b5$c803c600$052aa8c0@foo>
p4raw-id: //depot/perl@11647
|
|
|
|
|
|
|
| |
Message-ID: <20010806172911.A2071@fotango.com>
(the intrpvar.h addition moved to the end for bincompat)
p4raw-id: //depot/perl@11601
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0108040939050.23972-100000@mako.covalent.net>
p4raw-id: //depot/perl@11574
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0108031730040.23972-100000@mako.covalent.net>
p4raw-id: //depot/perl@11567
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0108022020100.8991-100000@mako.covalent.net>
p4raw-id: //depot/perl@11560
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0108021813380.8991-100000@mako.covalent.net>
p4raw-id: //depot/perl@11559
|
|
|
|
|
| |
kindly supplied by Rainer Keuchel <rkeuc@allgeier.com>.
p4raw-id: //depot/perl@11549
|
|
|
|
|
| |
Message-ID: <20010801135702.I10442@netthink.co.uk>
p4raw-id: //depot/perl@11541
|
|
|
|
|
| |
Message-ID: <20010723192949.A14802@math.ohio-state.edu>
p4raw-id: //depot/perl@11462
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
platforms that don't have pthread_atfork() (extension of
the fix in change#11151).
Note that this will not help extensions that call fork()
directly in C, or that link to libraries that call fork()
directly. Such cases must be fixed to either call
PerlProc_fork(), or call atfork_lock() in parent before the
calling the function that forks and call atfork_unlock()
in both parent and child immediately after the fork().
(There are no worries if C code calls exec() in the child
immediately after a fork(). Only cases where the child
calls perl's API functions (including New()) after the
fork() are problematic.)
This change also eliminates the use of vfork() from perl,
since all such uses were violating the severe restrictions
on modifying the state of the process between the vfork()
and the exec().
This is a modified version of patches suggested by Abhijit
Menon-Sen and Richard Soderberg.
p4raw-link: @11151 on //depot/perl: 50dd6e574ff39b609595ddb16b2fe9f625a26f8c
p4raw-id: //depot/perl@11423
|
|
|
| |
p4raw-id: //depot/perl@11293
|
|
|
| |
p4raw-id: //depot/perl@11289
|
|
|
|
|
| |
Message-ID: <B772A6AD.2288%artur@contiller.se>
p4raw-id: //depot/perl@11283
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0107110855070.11688-100000@mako.covalent.net>
p4raw-id: //depot/perl@11281
|
|
|
|
|
|
|
| |
Message-ID: <000b01c10a04$4fa16a10$21000a0a@vogw2kdev>
Threadsafe PMOPs for ithreads, waiting for AMS's Perl_re_dup().
p4raw-id: //depot/perl@11274
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
since it doesn't ensure threads other than the one calling fork()
aren't holding any locks; the fix is to use pthread_atfork() to
hold global locks
building perl with -Dusemymalloc exacerbates the problem since
Perl_malloc() holds a mutex, and perl's exec() calls New()
XXX the code in win32thread.h may be needed on platforms that have
no pthread_atfork()
p4raw-id: //depot/perl@11151
|
|
|
|
|
| |
Message-Id: <E15HC3M-0007jL-00.2001-07-02-23-20-24@mail18.svr.pol.co.uk>
p4raw-id: //depot/perl@11110
|
|
|
| |
p4raw-id: //depot/perl@10951
|
|
|
|
|
|
|
| |
Message-ID: <20010624054705.A27890@math.ohio-state.edu>
Test suite fixes.
p4raw-id: //depot/perl@10883
|
|
|
|
|
|
|
| |
by John Peacock. (Can be 'ntea' which means emulate UNIX file
attribute semantics as much as possible, or 'ntsec' which uses
native NTFS semantics.) (See also #10877.)
p4raw-id: //depot/perl@10875
|
|
|
| |
p4raw-id: //depot/perl@10806
|
|
|
|
|
| |
Message-ID: <20010616074119.A24720@lustre.linux.in>
p4raw-id: //depot/perl@10654
|
|
|
| |
p4raw-id: //depot/perl@10650
|
|
|
| |
p4raw-id: //depot/perl@10643
|
|
|
|
|
| |
than *open::layers variables which caused all the HV/AV hassle.
p4raw-id: //depot/perlio@10618
|
|
|
|
|
| |
Message-Id: <p05100306b749ec0eaade@[10.0.1.177]>
p4raw-id: //depot/perl@10512
|
|
|
| |
p4raw-id: //depot/perl@10392
|
|
|
|
|
| |
Message-ID: <20010531082755.A10018@lustre.linux.in>
p4raw-id: //depot/perl@10352
|
|
|
| |
p4raw-id: //depot/perl@10335
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
mangles PERL5OPT])
From: Michael G Schwern <schwern@pobox.com>
Date: Wed, 30 May 2001 17:10:38 +0100
Message-ID: <20010530171038.L670@blackrider.blackstar.co.uk>
Subject: Re: [PATCH perl.c t/run/runenv.t] (was Re: [ID 20010514.042] Perl v5.6.1 mangles PERL5OPT])
From: Abhijit Menon-Sen <ams@wiw.org>
Date: Wed, 30 May 2001 23:16:13 +0530
Message-ID: <20010530231613.A31933@lustre.linux.in>
p4raw-id: //depot/perl@10334
|
|
|
|
|
| |
and Abhijit Menon-Sen.
p4raw-id: //depot/perl@10321
|
|
|
|
|
| |
Message-Id: <200105191912.UAA23925@gizmo.fdgroup.co.uk>
p4raw-id: //depot/perl@10168
|
|
|
| |
p4raw-id: //depot/perl@10125
|
|
|
|
|
| |
from Takis Psarogiannakopoulos.
p4raw-id: //depot/perl@10121
|
|
|
|
|
| |
Message-Id: <5.0.2.1.0.20010502152210.01f65550@24.8.96.48>
p4raw-id: //depot/perl@9966
|
|
|
|
|
| |
Message-Id: <5.0.2.1.0.20010502112909.01f24e28@24.8.96.48>
p4raw-id: //depot/perl@9960
|