summaryrefslogtreecommitdiff
path: root/pp_sys.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* [perl #77496] tied gets scalars and globs confusedFather Chrysostomos2010-10-241-1/+1
* don't rely on ghost contexts being unmolestedZefram2010-10-241-1/+3
* In pp_getlogin, use sv_setpv_mg() to avoid needing an explicit strlen() call.Nicholas Clark2010-10-241-1/+2
* [perl #77362] Assigning glob to lvalue causes stringificationFather Chrysostomos2010-09-261-3/+4
* Move the call to Perl_cv_clone() into S_doform(), from its two callers.Nicholas Clark2010-09-011-5/+3
* Silence g++ compatibility warningRobin Barker2010-08-281-2/+10
* Fix stack corruption by unsupported filetestsJan Dubois2010-08-191-5/+8
* Make sure the stack is balanced in the case that we fake the result of unsupp...Andy Armstrong2010-08-171-3/+9
* Silence compiler warningJerry D. Hedden2010-07-081-1/+1
* avoid multiple FETCH/stringify on filetest opsDavid Mitchell2010-07-031-10/+14
* add my_[l]stat_flags(); make my_[l]stat() mathomsDavid Mitchell2010-07-031-4/+4
* Add Perl_croak_no_modify() to implement Perl_croak("%s", PL_no_modify).Nicholas Clark2010-06-271-1/+1
* Return DIE(...) to *return*ing Perl_die(...).Nicholas Clark2010-06-271-53/+1
* Note why pp_tie can't use call_method() for a package name.Nicholas Clark2010-06-141-2/+4
* Merge flags and argc parameters to S_tied_handle_method().Nicholas Clark2010-06-131-10/+16
* In S_tied_handle_method() default to mortalizing extra arguments.Nicholas Clark2010-06-131-9/+20
* Add a gimme parameter to S_tied_handle_method().Nicholas Clark2010-06-131-16/+13
* Change S_tied_handle_method() to varargs to allow extra SV parameters.Nicholas Clark2010-06-131-46/+51
* Merge simple tied handle method calls into S_tied_handle_method().Nicholas Clark2010-06-131-24/+18
* For tied file handle calls, use PUSH* when we know that the stack has space.Nicholas Clark2010-06-131-11/+11
* Remove unecessary EXTEND()s from pp_sys.cNicholas Clark2010-06-131-7/+7
* In pp_eof, ensure stack space for the second argument to the tied EOF method.Nicholas Clark2010-06-131-0/+1
* Fix edge case in pp_eof where the stack extent was not checked.Nicholas Clark2010-06-121-4/+8
* Fix edge cases in pp_getc and pp_tell where the stack extent was not checked.Nicholas Clark2010-06-121-0/+5
* make overload respect get magicDavid Mitchell2010-05-211-6/+53
* use the correct format codes in warnings from gmtime/localtimeTony Cook2010-05-171-5/+5
* SV-based interfaces for dieing and warningZefram2010-04-231-62/+53
* PL_defoutgv isn't always a GV.David Mitchell2010-03-301-3/+3
* Don't try to calculate a time over the conservative failure boundary.Michael G. Schwern2010-02-051-4/+25