summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Integrate perlio:Jarkko Hietaniemi2002-07-171-206/+196
|\ | | | | | | | | | | | | | | | | | | [ 17587] Fix :scalar layer to allow it to exist under other layers. Actual fix is just the if (!f) test before calling PerlIO_allocate(). Rest of change is conforming to standard indent. p4raw-link: @17587 on //depot/perlio: 14d89041d8ff788f94621c8fcb0918e3be8f01f0 p4raw-id: //depot/perl@17594
| * Fix :scalar layer to allow it to exist under other layers.Nick Ing-Simmons2002-07-171-206/+196
| | | | | | | | | | | | | | Actual fix is just the if (!f) test before calling PerlIO_allocate(). Rest of change is conforming to standard indent. p4raw-id: //depot/perlio@17587
* | Encode::FB_QUIETTatsuhiko Miyagawa2002-07-171-1/+1
|/ | | | | Message-ID: <86adoq4sgi.wl@mail.edge.co.jp> p4raw-id: //depot/perl@17591
* Remove bad advice : -M doesn't work on the #! lineRafael Garcia-Suarez2002-07-161-5/+0
| | | p4raw-id: //depot/perl@17581
* Clarify the PerlIO::scalar docs (suggested by ElizabethRafael Garcia-Suarez2002-07-151-1/+7
| | | | | Mattijsen.) p4raw-id: //depot/perl@17560
* Add #!./perl, noticed by John Adams.Jarkko Hietaniemi2002-07-151-0/+2
| | | p4raw-id: //depot/perl@17558
* The installation of the 5.005threads {Queue,Semaphore}.pmJarkko Hietaniemi2002-07-132-0/+6
| | | | | didn't quite work. p4raw-id: //depot/perl@17518
* Minor doc changes for PerlIO::via.Rafael Garcia-Suarez2002-07-131-4/+4
| | | p4raw-id: //depot/perl@17517
* Document that using threads/pseudofork inside BEGINs does not work.Jarkko Hietaniemi2002-07-131-0/+11
| | | p4raw-id: //depot/perl@17513
* [DOC PATCH] threads::shared.pm, share( $hashref->{key} ) bugElizabeth Mattijsen2002-07-121-0/+5
| | | | | Message-Id: <4.2.0.58.20020712234444.0209f350@mickey.dijkmat.nl> p4raw-id: //depot/perl@17512
* [DOC PATCH] threads.pm, threads->tid in DESTROY bugElizabeth Mattijsen2002-07-121-3/+5
| | | | | Message-Id: <4.2.0.58.20020712232919.0224fea0@mickey.dijkmat.nl> p4raw-id: //depot/perl@17511
* threads::shared::queue and semaphore become Thread::SemaphoreJarkko Hietaniemi2002-07-127-213/+129
| | | | | | | and Queue. The 5005threads case where the old Semaphore and Queue.pm (they are disguised as .pmx) should get magically installed instead has not been tested. p4raw-id: //depot/perl@17509
* Document that one cannot "proxy" enable threading.Jarkko Hietaniemi2002-07-121-6/+7
| | | p4raw-id: //depot/perl@17500
* Re: Thread object by tid?Elizabeth Mattijsen2002-07-121-0/+15
| | | | | Message-Id: <4.2.0.58.20020712002638.0218ce10@mickey.dijkmat.nl> p4raw-id: //depot/perl@17499
* Can't get #17492 to work with -Uuseperlio otherwise (eitherJarkko Hietaniemi2002-07-111-2/+2
| | | | | coredumps or warnings about failing to close _GEN_0 ensue) p4raw-id: //depot/perl@17495
* Re: $Storable::drop_utf8 is undeclaredNicholas Clark2002-07-111-0/+1
| | | | | Message-ID: <20020711214004.GC291@Bagpuss.unfortu.net> p4raw-id: //depot/perl@17494
* finall fix core dump in XS::TypemapTim Jenness2002-07-112-7/+10
| | | | | Message-ID: <Pine.LNX.4.44.0207111013090.31260-100000@lapaki> p4raw-id: //depot/perl@17492
* Don't set the context to the running thread beforeArtur Bergman2002-07-111-1/+1
| | | | | we run destroy on the old, cures segfault on linux. p4raw-id: //depot/perl@17481
* Problem fixed with detached threads reported by Stacy Maughan Artur Bergman2002-07-111-2/+6
| | | | | | | and debugged by Jan Dubois. Problem occured when a thread cleared itself out and then switched back to itself (which was gone) and wanted a function pointer for the PerlMemShared free. p4raw-id: //depot/perl@17476
* Small threads docs cleanups.Jarkko Hietaniemi2002-07-102-56/+57
| | | p4raw-id: //depot/perl@17475
* [DOC PATCH] ext/threads/shared/shared.pmDave Mitchell2002-07-101-0/+5
| | | | | Message-ID: <20020711011518.B27438@fdgroup.com> p4raw-id: //depot/perl@17474
* Re: Storable 2.04 'make test' failure on AIX, perl 5.005_03Nicholas Clark2002-07-101-1/+1
| | | | | Message-ID: <20020710221735.GE312@Bagpuss.unfortu.net> p4raw-id: //depot/perl@17472
* [DOC PATCH] some doc nits after 17463Elizabeth Mattijsen2002-07-101-1/+1
| | | | | Message-Id: <4.2.0.58.20020710211105.032546d0@mickey.dijkmat.nl> p4raw-id: //depot/perl@17470
* Makes list skip the main thread.Artur Bergman2002-07-102-11/+12
| | | p4raw-id: //depot/perl@17466
* Detypo.Jarkko Hietaniemi2002-07-091-4/+6
| | | p4raw-id: //depot/perl@17456
* Change PerlIO::Scalar and Via to scalar and via.Jarkko Hietaniemi2002-07-098-47/+47
| | | p4raw-id: //depot/perl@17454
* Update documentation with &share() non prototype checking version.Artur Bergman2002-07-092-28/+10
| | | | | | | | | | | Fix share so it once again returns a reference to whatever it just shared, so now you can do my &share([]); Remove check for useithreads and Config.pm from threads::shared, you can now always use threads::shared in your module without overhead of config.pm and without speed hit unless threads have been requested, share, cond_wait, cond_broadcast, cond_signal and lock all become noops, so does : share. p4raw-id: //depot/perl@17453
* 5.8.0-RC1 on SunOS 4!Robin Barker2002-07-091-1/+10
| | | | | | | Message-Id: <200207091903.UAA09531@tempest.npl.co.uk> (the sprintf() spot in Dumper.xs fixed) p4raw-id: //depot/perl@17450
* [PATCH] Removing example layers from MIME::QuotedPrintElizabeth Mattijsen2002-07-093-59/+51
| | | | | | | | | | | Date: Mon, 08 Jul 2002 10:21:09 +0200 Message-Id: <4.2.0.58.20020708090819.02740f00@mickey.dijkmat.nl> Subject: Re: [PATCH] Removing example layers from MIME::QuotedPrint From: Elizabeth Mattijsen <liz@dijkmat.nl> Date: Tue, 09 Jul 2002 09:29:52 +0200 Message-Id: <4.2.0.58.20020709092337.02893300@mickey.dijkmat.nl> p4raw-id: //depot/perl@17449
* Tidy PerlIO::ViaNick Ing-Simmons2002-07-093-7/+35
| | | | | | | | - add test for open fail - add PerlIO_debug() diags to open paths - comments on API gaps - Update OPEN,SYSOPEN,FDOPEN pod entries. p4raw-id: //depot/perlio@17447
* Indentation normalize via Nick Ing-Simmons2002-07-091-388/+381
| | | | | | indent -kr -nce -psl (Better indent incantations welcome - something for Porting/?) p4raw-id: //depot/perlio@17442
* SuSE 8.0 at least needs hints to use -lgdbm for ODBM_FileNick Ing-Simmons2002-07-091-0/+3
| | | p4raw-id: //depot/perlio@17431
* MIME::QuotedPrint is for bytes only; from Gisle.Jarkko Hietaniemi2002-07-092-1/+8
| | | p4raw-id: //depot/perl@17429
* [DOC PATCH] Thread::Signal.pmElizabeth Mattijsen2002-07-081-1/+21
| | | | | Message-Id: <4.2.0.58.20020708233854.024783b0@mickey.dijkmat.nl> p4raw-id: //depot/perl@17426
* Use the same name for the QP test as MIME::Base64 does.Jarkko Hietaniemi2002-07-071-0/+0
| | | p4raw-id: //depot/perl@17409
* Re: autom4te and perl 5.8.0Andy Dougherty2002-07-041-2/+19
| | | | | | | Message-ID: <Pine.SOL.4.10.10207031150540.6601-100000@maxwell.phys.lafayette.edu> (with an additional paranoid nit : skip test unless -c $devnull) p4raw-id: //depot/perl@17398
* Allow PerlIO::Via to look for modules in the defaultRafael Garcia-Suarez2002-07-013-1/+20
| | | | | namespace PerlIO::Via::. p4raw-id: //depot/perl@17393
* NetWare update from Ananth Kesari.Jarkko Hietaniemi2002-06-281-14/+6
| | | p4raw-id: //depot/perl@17376
* Subject: [DOC PATCH] DynaLoader.pmElizabeth Mattijsen2002-06-272-2/+4
| | | | | | | | | | | Date: Wed, 26 Jun 2002 20:27:25 +0200 Message-Id: <4.2.0.58.20020626202637.025db610@mickey.dijkmat.nl> Subject: [DOC PATCH] Base64.pm From: Elizabeth Mattijsen <liz@dijkmat.nl> Date: Thu, 27 Jun 2002 00:54:10 +0200 Message-Id: <4.2.0.58.20020627005340.02c74550@mickey.dijkmat.nl> p4raw-id: //depot/perl@17368
* Integrate from macperl:Jarkko Hietaniemi2002-06-262-3/+11
| | | | | | | | | | | | | | | | | | | | | [ 17345] Mac OS Test updates [ 17347] Support hints and OPTIMIZE in MM_MacOS [ 17348] Crank down optimization for Mac OS in Digest::MD5 p4raw-link: @17348 on //depot/macperl: 5e6109b944d42c12b5bf2560bc7d5e1e26b50cb5 p4raw-link: @17347 on //depot/macperl: 4fa8a8856377f81f41ceaba369f758c11cc6b898 p4raw-link: @17345 on //depot/macperl: ef506d9df705afe007449cf4101370864d7e1d79 p4raw-id: //depot/perl@17363 p4raw-branched: from //depot/macperl@17362 'branch in' ext/Digest/MD5/hints/MacOS.pl p4raw-integrated: from //depot/macperl@17362 'copy in' ext/POSIX/t/taint.t lib/ExtUtils/MM_MacOS.pm lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/test-harness.t (@17344..)
* Integrate perlio:Jarkko Hietaniemi2002-06-213-6/+9
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ 17330] PerlIO Layer implementation future proofing. - Inspired by Nick C's suggestion add size of function table to the table as a validation check. - also optimize pseudo-layer code to avoid malloc/link of something destined to be immediately popped & freed. - Minor addition to pod/perliol.pod [ 17335] Fix bug in optimized pseudo-layers. p4raw-link: @17335 on //depot/perlio: 00f5185623ac489efbed49ff4cbdf42316dcf5fd p4raw-link: @17330 on //depot/perlio: 2dc2558e5965ed21842375d8cc89de68e0c966e2 p4raw-id: //depot/perl@17336
* | Retract #17331, something broke (e.g. t/io/utf8.t became unhappy)Jarkko Hietaniemi2002-06-203-9/+6
| | | | | | p4raw-id: //depot/perl@17332
* | Integrate perlio:Jarkko Hietaniemi2002-06-203-6/+9
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | [ 17330] PerlIO Layer implementation future proofing. - Inspired by Nick C's suggestion add size of function table to the table as a validation check. - also optimize pseudo-layer code to avoid malloc/link of something destined to be immediately popped & freed. - Minor addition to pod/perliol.pod p4raw-link: @17330 on //depot/perlio: 2dc2558e5965ed21842375d8cc89de68e0c966e2 p4raw-id: //depot/perl@17331
| * PerlIO Layer implementation future proofing.Nick Ing-Simmons2002-06-203-6/+9
| | | | | | | | | | | | | | | | | | - Inspired by Nick C's suggestion add size of function table to the table as a validation check. - also optimize pseudo-layer code to avoid malloc/link of something destined to be immediately popped & freed. - Minor addition to pod/perliol.pod p4raw-id: //depot/perlio@17330
* | [Patch POSIX.pod] "fmod" ne "modf"Newton, Philip2002-06-201-1/+1
|/ | | | | | From: "Newton, Philip" <Philip.Newton@datenrevision.de> Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCDA7@hamsem01.de.gedas.vwg> p4raw-id: //depot/perl@17323
* Integrate perlio:Jarkko Hietaniemi2002-06-194-1/+24
|\ | | | | | | | | | | | | | | | | | | [ 17309] "Clean" implementation of binmode(FH)/":raw" identity. New function table entry so all layer definitions need tweaking. Extra function table entry allows a layer to remain on a binmode stack New PerlIOBase_binmode allows easy implementation of default policy. p4raw-link: @17309 on //depot/perlio: 86e05cf231bed3044bd929f19303d6a3d872b202 p4raw-id: //depot/perl@17312
| * "Clean" implementation of binmode(FH)/":raw" identity.Nick Ing-Simmons2002-06-194-1/+24
| | | | | | | | | | | | | | New function table entry so all layer definitions need tweaking. Extra function table entry allows a layer to remain on a binmode stack New PerlIOBase_binmode allows easy implementation of default policy. p4raw-id: //depot/perlio@17309
* | RE: [PATCH] POSIX taint testsPaul Marquess2002-06-191-10/+18
| | | | | | | | | | | | From: "Paul Marquess" <Paul.Marquess@btinternet.com> Message-ID: <AIEAJICLCBDNAAOLLOKLGEHFEOAA.Paul.Marquess@btinternet.com> p4raw-id: //depot/perl@17311
* | Re: [PATCH] POSIX taint testsMichael G. Schwern2002-06-191-8/+12
|/ | | | | Message-id: <20020619205156.GH1232@ool-18b93024.dyn.optonline.net> p4raw-id: //depot/perl@17308
* POSIX taint testsPaul Marquess2002-06-191-0/+47
| | | | | | From: "Paul Marquess" <Paul.Marquess@btinternet.com> Message-ID: <AIEAJICLCBDNAAOLLOKLMEFJEOAA.Paul.Marquess@btinternet.com> p4raw-id: //depot/perl@17296