summaryrefslogtreecommitdiff
path: root/pod/perlxs.pod
Commit message (Collapse)AuthorAgeFilesLines
* [perl #82704] Change bare link in pod to L<...>Michael Stevens2011-01-241-1/+1
|
* Document the INCLUDE_COMMAND XS directiveSteffen Mueller2010-04-201-1/+17
| | | | | ExtUtils::ParseXS has recognized the INCLUDE_COMMAND directive as a smarter replacement for "INCLUDE: perl -e ... |" since version 2.21_01.
* * Em dash cleanup in pod/brian d foy2010-01-131-2/+2
| | | | | | | | | | | | | I looked at all the instances of spaces around -- and in most cases converted the sentences to use more appropriate punctuation. In general, the -- in the perl docs seem to be there only to make really complicated and really long sentences. I didn't look at the closed em-dashes. They probably have the same sentence-complexity problem. I left some open em-dashes in place. Those are the ones used in lists.
* missing "to" in perlxsOffer Kaye2009-07-271-1/+1
|
* Document that XS_VERSION_BOOTCHECK may break if $VERSION is a long enough NVNiko Tyni2009-05-021-0/+6
| | | | | | | | | | | | | | | | | | As seen in <http://bugs.debian.org/482139>, using a long floating point number as $VERSION can make XS_VERSION_BOOTCHECK fail because of a loss of precision in the stringification: RRDs object version 1.2999070803 does not match bootstrap parameter 1.29990708 at /usr/lib/perl/5.10/DynaLoader.pm line 219. The mismatch happens in Perl_upg_version(), which converts a double value (NV) to a string with nine decimals but leaves a string value intact. Using a string as $VERSION works fine: -$VERSION=1.299907080300; +$VERSION="1.299907080300"; so recommend this in the VERSIONCHECK entry of perlxs.pod.
* Silence a podchecker warning in perlxs.podVincent Pit2008-12-191-1/+1
|
* Purge C<n_a> thoughtcrime from the pods.Nicholas Clark2008-08-101-4/+2
| | | p4raw-id: //depot/perl@34197
* Fix for #56874: maybe small error in perlxs.pod exampleMarcus Holland-Moritz2008-07-131-1/+1
| | | p4raw-id: //depot/perl@34137
* Re: [PATCH] POD fixesVincent Pit2008-02-251-1/+1
| | | | | Message-ID: <47BFFDCB.60107@profvince.com> p4raw-id: //depot/perl@33366
* Exterminate PL_na! Exterminate! Exterminate! Exterminate!Nicholas Clark2007-12-221-2/+2
| | | p4raw-id: //depot/perl@32704
* POD cleanupsDavid Landgren2007-10-041-2/+2
| | | | | Message-ID: <46FD4B30.9070802@landgren.net> p4raw-id: //depot/perl@32026
* XSUB.h - silence MSVC6 compiler warningRobert May2007-07-251-1/+1
| | | | | | From: "Robert May" <robertmay@cpan.org> Message-ID: <54bdc7510707211829t67e8b82eo7d8e722e73c6a3b3@mail.gmail.com> p4raw-id: //depot/perl@31653
* Use newer 'threads' constructsJerry D. Hedden2007-02-151-1/+1
| | | | | | From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <844555.64815.qm@web30202.mail.mud.yahoo.com> p4raw-id: //depot/perl@30310
* reentr reshuffleJarkko Hietaniemi2006-09-281-0/+17
| | | | | Message-ID: <451B9874.7060000@iki.fi> p4raw-id: //depot/perl@28896
* re-implement MY_CXT API more efficiently, and add explicitDave Mitchell2005-12-291-1/+11
| | | | | interpeter arg variant p4raw-id: //depot/perl@26523
* add tests for MY_CXT API and improve its documentationDave Mitchell2005-12-291-1/+37
| | | p4raw-id: //depot/perl@26522
* remove whitespace preceding semicolon in docsSteven Schubiger2005-11-101-2/+2
| | | | | Message-ID: <20051031214827.GH24416@accognoscere.homeunix.org> p4raw-id: //depot/perl@26073
* POD typosPiotr Fusik2005-08-011-1/+1
| | | | | | From: "Piotr Fusik" <pfusik@op.pl> Message-ID: <00ef01c59542$3198ba00$26d34dd5@piec> p4raw-id: //depot/perl@25253
* RE: [perl #32660] INT2PTR not mentioned in perlxs(1) Robin Barker2005-01-041-1/+6
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C553@hotel.npl.co.uk> p4raw-id: //depot/perl@23742
* 1. Add section to perlxs.pod describing that the refcount of AVs/HVsMarcus Holland-Moritz2004-02-181-0/+57
| | | | | | | | | returned from XSUBs through RETVAL isn't decremented as it is for SVs. This causes those XSUBs to leak memory and cannot be fixed without breaking existing CPAN modules that work around this bug. 2. Fix a memory leak of that kind in POSIX::localconv. p4raw-id: //depot/perl@22330
* [patch] L<perlguts/"API LISTING"> is now L<perlapi>Stas Bekman2003-06-061-2/+2
| | | | | | | | | | | Date: Thu, 05 Jun 2003 10:10:36 +1000 Message-ID: <3EDE8A7C.2080302@stason.org> Subject: [patch] perlguts authors dup From: Stas Bekman <stas@stason.org> Date: Thu, 05 Jun 2003 10:14:12 +1000 Message-ID: <3EDE8B54.6090808@stason.org> p4raw-id: //depot/perl@19699
* Re: [PATCH] Correct/completes Overloading in XS modsJohn Peacock2002-09-041-0/+17
| | | | | Message-ID: <3D7263BC.9020608@rowman.com> p4raw-id: //depot/perl@17832
* Re: [PATCH] Small nit in perlxs.podLupe Christoph2002-06-071-0/+4
| | | | | Message-ID: <20020607113824.GD24159@lupe-christoph.de> p4raw-id: //depot/perl@17060
* doc fixStas Bekman2002-03-211-0/+8
| | | | | Message-ID: <3C99BA47.9010403@stason.org> p4raw-id: //depot/perl@15404
* [PATCH] enhance xsubpp to support OVERLOAD: keywordJohn Peacock2002-03-041-0/+34
| | | | | | | | | | | Date: Mon, 04 Mar 2002 16:18:42 -0500 Message-ID: <3C83E4B2.3060700@rowman.com> Subject: Re: [PATCH] enhance xsubpp to support OVERLOAD: keyword From: John Peacock <jpeacock@rowman.com> Date: Mon, 04 Mar 2002 16:42:55 -0500 Message-ID: <3C83EA5F.80303@rowman.com> p4raw-id: //depot/perl@15017
* xsubppIlya Zakharevich2002-03-041-0/+25
| | | | | | Message-Id: <20020304022552.A14106@math.ohio-state.edu> p4raw-link: @14577 on //depot/perl: 0ad5258ff3f3328f321188cbb4fcd6a74b365431 p4raw-id: //depot/perl@14986
* Pod whitespace cleanup, round 0. coral@eekeek.org2001-12-291-6/+6
| | | | | Message-Id: <200112290058.fBT0wMD26750@eekeek.org> p4raw-id: //depot/perl@13930
* Module names and other nitsAudrey Tang2001-12-291-1/+1
| | | | | Message-ID: <20011229015928.A29712@geb.elixus.org> p4raw-id: //depot/perl@13922
* Document the MY_CXT business; from Paul Marquess.Jarkko Hietaniemi2001-11-151-0/+127
| | | p4raw-id: //depot/perl@13031
* a few typo fixes Jeffrey Friedl2001-11-121-2/+2
| | | | | | | | | | | Message-Id: <200111120515.fAC5FIc74795@ventrue.corp.yahoo.com> Patching README.foo instead of pod/perlfoo.pod, not patching Math::BigInt (Tels will take care of that), dropping broken hv.c and sv.h patches, patching libnetcfg.PL and perldoc.PL instead of libnetcfg and perldoc, patching ext/Digest/MD5/t/files.t since MD5.pm was changed. p4raw-id: //depot/perl@12954
* perlxs misprintsIlya Zakharevich2001-06-261-8/+10
| | | | | Message-ID: <20010626172000.A26951@math.ohio-state.edu> p4raw-id: //depot/perl@10975
* the uncontroversial doc patchesMichael Stevens2001-03-161-3/+3
| | | | | Message-ID: <20010315200112.A7636@firedrake.org> p4raw-id: //depot/perl@9175
* Re: [PATCH 5.7.0] OUT keyword for xsubppIlya Zakharevich2000-11-291-23/+44
| | | | | | | | | | | | | | | Date: Wed, 29 Nov 2000 02:13:14 -0500 Message-ID: <20001129021314.A2532@monk.mps.ohio-state.edu> OUT keyword nits. Subject: Re: [PATCH 5.7.0] OUT keyword for xsubpp From: Ilya Zakharevich <ilya@math.ohio-state.edu> Date: Wed, 29 Nov 2000 03:09:04 -0500 Message-ID: <20001129030904.A2754@monk.mps.ohio-state.edu> OUT and IN_OUT documentation. p4raw-id: //depot/perl@7915
* Re: 20001101.003 PDLNicholas Clark2000-11-161-22/+28
| | | | | Message-ID: <20001116164825.B93487@plum.flirble.org> p4raw-id: //depot/perl@7717
* Re: [PATCH 5.005_64 missed]Ilya Zakharevich2000-10-021-13/+128
| | | | | Message-ID: <20001001185010.A14152@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@7112
* [ID 20000911.011] misplaced typemap in perlxs.podYitzchak Scott-Thoennes2000-09-121-4/+4
| | | | | Message-Id: <200009120507.e8C57LA02461@garcia.efn.org> p4raw-id: //depot/perl@7061
* minimal removal of 8 bit chrs from perlebcdic.podPeter Prymmer2000-09-011-3/+2
| | | | | | | | Message-ID: <Pine.OSF.4.10.10009011542550.147696-100000@aspara.forte.com> plus rework the http: spots as suggested by Tom Christiansen, plus regen perltoc. p4raw-id: //depot/perl@7001
* http:// in L<>Nicholas Clark2000-09-011-1/+1
| | | | | Message-ID: <20000901220321.B72074@plum.flirble.org> p4raw-id: //depot/perl@6994
* [ID 20000829.023] [PATCH 6868] perlbug@perl.com --> perlbug@perl.orgPhilip Newton2000-08-291-1/+1
| | | | | Message-Id: <200008291938.VAA98259@smtp1.nikoma.de> p4raw-id: //depot/perl@6894
* more pod nits (from Larry Virden)Gurusamy Sarathy2000-04-241-1/+1
| | | p4raw-id: //depot/perl@5939
* fix outdated URLs (from Michael G Schwern)Gurusamy Sarathy2000-02-281-1/+1
| | | p4raw-id: //depot/perl@5319
* s/undef/NO_INIT/g in change#5183Gurusamy Sarathy2000-02-221-2/+2
| | | | | p4raw-link: @5183 on //depot/perl: 4628e4f8c013135d9c9ab7023d7730ab67289444 p4raw-id: //depot/perl@5195
* allow optional XSUB parameters without being forced to use aGurusamy Sarathy2000-02-211-3/+16
| | | | | default (from Hugo van der Sanden) p4raw-id: //depot/perl@5183
* XS documentation patches suggested by Ilya, severally adjustedGurusamy Sarathy1999-12-021-175/+449
| | | p4raw-id: //depot/perl@4620
* major pod update from Tom ChristiansenGurusamy Sarathy1999-05-241-2/+2
| | | p4raw-id: //depot/perl@3460
* patches suggested by John Bley <jbb6@acpub.duke.edu> (with minor edits)Gurusamy Sarathy1999-02-151-4/+4
| | | | | | | | | | | Date: Wed, 3 Feb 1999 05:24:55 -0500 (EST) Message-ID: <Pine.SOL.3.91.990203051924.302A-100000@soc11.acpub.duke.edu> Subject: [PATCH]5.005_54 (DOC) fix many typos -- Date: Wed, 3 Feb 1999 08:53:53 -0500 (EST) Message-ID: <Pine.SOL.3.91.990203085157.895A-100000@soc11.acpub.duke.edu> Subject: [PATCH]5.005_54 (DOC) typos p4raw-id: //depot/perl@2929
* another threads reliability fix: serialize writes to thr->threadsvGurusamy Sarathy1998-11-291-2/+4
| | | | | | | | avoid most uses of PL_na (which is much more inefficient than a simple local); update docs to suit; PL_na now being thr->Tna may be a minor compatibility issue for extensions--will require dTHR outside of XSUBs (those get automatic dTHR) p4raw-id: //depot/perl@2387
* clarify section name rules for typemapsGurusamy Sarathy1998-10-171-3/+5
| | | p4raw-id: //depot/perl@1995
* Update perldelta and Changes; refresh perltoc; newer perlembed.podGurusamy Sarathy1998-07-221-5/+5
| | | | | | from Jon Orwant <orwant@media.mit.edu>; update guts documentation to reflect PL_* changes; is this *it* for 5.005? p4raw-id: //depot/perl@1646
* patch for more flexible initialization of xsub parametersTye McQueen1998-07-091-6/+26
| | | | | | Message-Id: <199807070004.AA16454@metronet.com> Subject: Enhanced arg inits for xsubpp p4raw-id: //depot/perl@1381