summaryrefslogtreecommitdiff
path: root/pp_sys.c
Commit message (Expand)AuthorAgeFilesLines
* [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
* Fix compiler warnings:Jerry D. Hedden2009-11-131-5/+5
* flock() should return EWOULDBLOCK instead of EAGAIN.Jan Dubois2009-11-121-1/+5
* Add ENTER_with_name and LEAVE_with_name to automaticly check for matching ENT...Gerard Goossen2009-11-121-17/+17
* SvREFCNT_dec already checks if the SV is non-NULL (continued)Vincent Pit2009-11-081-2/+1
* Add a "return NORMAL" to a DIE at the end of a function to prevent compiler w...Gerard Goossen2009-11-061-0/+51
* move JMPENV_JUMP to die_where and mark it as "noreturn"Gerard Goossen2009-11-061-0/+1
* Allow syswrite with offset same as length of string [perl #70095]Gisle Aas2009-10-291-1/+1
* Enable deprecation warnings by default.Nicholas Clark2009-10-161-4/+6
* Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner().Nicholas Clark2009-10-121-43/+30
* Let tell() report warnings on unopened filehandlesRafael Garcia-Suarez2009-10-081-1/+1
* Make tell() fail properly if called without an argument and when no previous ...Rafael Garcia-Suarez2009-10-081-0/+6
* syswrite prints garbage if called with empty scalar and non-zero offsetchromatic2009-07-271-1/+1