summaryrefslogtreecommitdiff
path: root/pp_sys.c
Commit message (Expand)AuthorAgeFilesLines
* properly propagate tainted errorsTony Cook2012-08-091-1/+1
* [perl #82250] fix tainted (s)print formatDavid Mitchell2011-03-141-2/+0
* [perl #77384] Passing a ref to warn doesn't append file and lineFather Chrysostomos2011-03-051-1/+3
* Correct the "unimplemented" message for get{host,net,proto,serv}ent aliases.Nicholas Clark2011-01-101-4/+4
* Merge the implementations of {end,set}{gr,pw}ent with endhostent.Nicholas Clark2011-01-101-44/+28
* Merge the implementations of pp_s{host,net,proto,serv}ent.Nicholas Clark2011-01-101-28/+21
* Merge the implementations of pp_e{host,net,proto,serv}ent.Nicholas Clark2011-01-101-32/+21
* Generate "Unsupported socket function" stubs using PL_ppaddr.Nicholas Clark2011-01-091-35/+10
* Rename pp_send to pp_syswrite, making send an alias for syswrite.Nicholas Clark2011-01-091-1/+1
* Generate pp_* prototypes in pp_proto.h, and remove pp.symNicholas Clark2011-01-091-2/+2
* In pp_send, assign to io earlier, and use op_type instead of PL_op->op_type.Nicholas Clark2011-01-081-5/+3
* In pp_send, transpose the blocks for OP_SYSWRITE and OP_SENDNicholas Clark2011-01-081-19/+17
* Fix typos (spelling errors) in Perl sources.Peter J. Acklam) (via RT2011-01-071-1/+1
* Convert tied PRINT to using Perl_tied_method()Nicholas Clark2011-01-051-0/+6
* Rename tied_handle_method() to tied_method(), and make it non-static.Nicholas Clark2011-01-051-46/+41
* In pp_sys.c, rename the macro tied_handle_method() to tied_handle_method0()Nicholas Clark2011-01-051-4/+4
* The mg parameter to S_tied_handle_method() can be const MG *Nicholas Clark2011-01-051-13/+13
* Split the flags and argc parameters to S_tied_handle_method().Nicholas Clark2011-01-051-22/+18
* Convert tied WRITE to using S_tied_handle_method()Nicholas Clark2011-01-041-6/+3
* Convert tied READ to using S_tied_handle_method()Nicholas Clark2011-01-041-7/+4
* Convert tied PRINTF to using S_tied_handle_method()Nicholas Clark2011-01-041-7/+3
* Convert tied OPEN to using S_tied_handle_method()Nicholas Clark2011-01-041-8/+8
* In pp_sys.c, move S_tied_handle_method() before pp_open.Nicholas Clark2011-01-041-48/+48
* Remove a long-vestigial PUTBACK from the tied OPEN code in pp_send.Nicholas Clark2011-01-041-1/+0
* Converge the implementation of tied OPEN with PRINTF, READ and WRITE.Nicholas Clark2011-01-041-2/+2
* GvIO(gv) returns NULL for a NULL gv, so refactor to take advantage of this.Nicholas Clark2011-01-021-30/+25
* make <expr> always overload if expr is overloadedDavid Mitchell2011-01-021-1/+6
* call pp_glob() even when its being skippedDavid Mitchell2011-01-021-0/+10
* standardise amagic method namingDavid Mitchell2010-12-311-1/+1
* Merge the opcode bodies for pp_bind and pp_connect.Nicholas Clark2010-12-301-32/+7
* Most socket ops weren't warning for unopened handles unless 'closed' was enabledNicholas Clark2010-12-301-14/+7
* pp_leavewrite wasn't warning for unopened handles unless 'closed' was enabled.Nicholas Clark2010-12-301-1/+1
* As report_evil_fh() checks WARN_{CLOSED,UNOPENED}, don't duplicate this.Nicholas Clark2010-12-281-38/+21
* As report_wrongway_fh() checks ckWARN(WARN_IO) internally, don't duplicate this.Nicholas Clark2010-12-281-13/+9
* Argument op to report_evil_fh() is always PL_op->op_type, so need not be passedNicholas Clark2010-12-281-24/+24
* The io argument to report_evil_fh() is always GvIO(gv), so need not be passed.Nicholas Clark2010-12-281-24/+24
* Extract the OP_phoney_* code from report_evil_fh() into report_wrongway_fh()Nicholas Clark2010-12-281-4/+4
* In pp_sockpair, remove duplication of code to close the supplied file handles.Nicholas Clark2010-12-281-7/+5
* Fix typo in warning code added to pp_sockpair in c289d2f7288798f8.Nicholas Clark2010-12-281-1/+1
* avoid undefined behaviour in fetch and modify of SP from 0a0e3cc51eTony Cook2010-12-281-1/+2
* Simplify return handling for tied handle OPEN/PRINTF/READ/WRITE.Nicholas Clark2010-12-271-22/+5
* [perl #80674] Fix compilation with very old versions of glibcDavid Leadbeater2010-12-161-1/+1
* Silence some data truncation compiler warningsJan Dubois2010-12-161-1/+1
* Deprecate tie $handle without *Father Chrysostomos2010-12-021-2/+18
* Revert "[perl #77496] tied gets scalars and globs confused"Father Chrysostomos2010-12-021-1/+1
* Revert "[perl #77688] tie $scalar can tie a handle"Father Chrysostomos2010-12-021-1/+1
* Revert "Make untie check the FAKE flag on globs"Father Chrysostomos2010-12-021-1/+1
* RT 75082: recv() with MSG_TRUNC flag SEGVDavid Mitchell2010-10-311-0/+3
* Make untie check the FAKE flag on globsFather Chrysostomos2010-10-251-1/+1
* [perl #77688] tie $scalar can tie a handleFather Chrysostomos2010-10-251-1/+1