summaryrefslogtreecommitdiff
path: root/pp_sys.c
Commit message (Collapse)AuthorAgeFilesLines
* fixes for most warnings identified by gcc -WallGurusamy Sarathy2000-03-051-10/+8
| | | p4raw-id: //depot/perl@5540
* tweak change#5286 (we don't ever get to pp_glob() if we're usingGurusamy Sarathy2000-02-271-4/+4
| | | | | | | the internal glob()) p4raw-link: @5286 on //depot/perl: 3a4b19e44cf4e74b7a6a58fed36ba3ca9cafc864 p4raw-id: //depot/perl@5289
* remove outdated info about csh and glob(); glob() need not failGurusamy Sarathy2000-02-271-0/+4
| | | | | when tainting anymore if using internal globbing p4raw-id: //depot/perl@5286
* make readdir() respect IOf_UNTAINT flag (allows untainting of directoryGurusamy Sarathy2000-02-271-2/+4
| | | | | handles with: C<use IO::Handle; opendir D, $dir or die; D->untaint;> p4raw-id: //depot/perl@5285
* Resync with mainlineCharles Bailey2000-02-261-20/+30
|\ | | | | p4raw-id: //depot/vmsperl@5269
| * Rhapsody/Darwin patches from Wilfredo Sanchez.Jarkko Hietaniemi2000-02-261-1/+1
| | | | | | p4raw-id: //depot/cfgperl@5262
| * Configure nits; add socksizetype; add getfsstat for completeness;Jarkko Hietaniemi2000-02-251-14/+0
| | | | | | | | | | | | add lseekproto, usefull64bits, socksizetype getfsstat to non-UNIX lands; regen Configure. p4raw-id: //depot/cfgperl@5259
| * MPE/ix patches from Mark Bixby.Jarkko Hietaniemi2000-02-241-2/+10
| | | | | | p4raw-id: //depot/cfgperl@5239
| * Add socklen_t probe; Configure maintenance.Jarkko Hietaniemi2000-02-221-4/+9
| | | | | | p4raw-id: //depot/cfgperl@5213
| * default mkdir() mode argument to 0777Gurusamy Sarathy2000-02-201-2/+9
| | | | | | p4raw-id: //depot/perl@5164
| * some rearrangement of the includes for easier "microperl" build;Gurusamy Sarathy2000-02-191-6/+0
| | | | | | | | | | add PERL_MICRO guards supplied by Simon Cozens <simon@brecon.co.uk> p4raw-id: //depot/perl@5143
| * set close-on-exec flag on sockets too, like we do for filesGurusamy Sarathy2000-02-191-0/+10
| | | | | | | | | | and pipes p4raw-id: //depot/perl@5137
| * set SvUTF8 on vectors only if there are chars > 127; update copyrightGurusamy Sarathy2000-02-061-1/+1
| | | | | | | | | | years (from Gisle Aas) p4raw-id: //depot/perl@5009
| * Largefilify offsets of tied handles.Jarkko Hietaniemi2000-02-041-0/+4
| | | | | | p4raw-id: //depot/cfgperl@4996
| * on cygwin, h_errno is now "__declspec(dllimport) int h_errno"Gurusamy Sarathy2000-02-021-1/+1
| | | | | | | | | | (from Eric Fifer <EFifer@sanwaint.com>) p4raw-id: //depot/perl@4965
| * truncate(FH) flushes FH before truncating itGurusamy Sarathy2000-01-221-4/+8
| | | | | | p4raw-id: //depot/perl@4838
| * add patch for printf-style format typechecks (from Robin BarkerGurusamy Sarathy2000-01-221-2/+2
| | | | | | | | | | <rmb1@cise.npl.co.uk>); fixes for problems so identified p4raw-id: //depot/perl@4836
| * patch to report warnings on bogus filehandles passed to flock(),Gurusamy Sarathy2000-01-211-21/+28
| | | | | | | | | | | | more consistent warnings, from Greg Bacon <gbacon@itsc.uah.edu> (slightly modified) p4raw-id: //depot/perl@4830
| * remove never-taken branch for making getc() operate on ARGV (spotted Gurusamy Sarathy1999-12-281-2/+0
| | | | | | | | | | by Ralph Corderoy <ralph@inputplus.demon.co.uk>) p4raw-id: //depot/perl@4733
| * partly fix perldiag regressions identified by Tom ChristiansenGurusamy Sarathy1999-12-281-11/+13
| | | | | | p4raw-id: //depot/perl@4709
| * bring in basic threads stuff under USE_ITHREADSGurusamy Sarathy1999-12-231-2/+2
| | | | | | p4raw-id: //depot/perl@4704
| * typos in change#4660Gurusamy Sarathy1999-12-071-2/+2
| | | | | | | | | | p4raw-link: @4660 on //depot/perl: 014822e4c0d7b7cfffc319235fe7ea64ec87ecae p4raw-id: //depot/perl@4661
| * tweaks for building with -DUSE_ITHREADS on !WIN32 platforms;Gurusamy Sarathy1999-12-061-2/+2
| | | | | | | | | | fix bug where lc($readonly) could result in bogus errors p4raw-id: //depot/perl@4660
| * make eof() open ARGV if it isn't open already; also fixes bugGurusamy Sarathy1999-12-041-3/+21
| | | | | | | | | | | | where eof() would operate on any last-read filehandle, not just ARGV p4raw-id: //depot/perl@4642
| * minor USE_ITHREADS tweaksGurusamy Sarathy1999-12-011-5/+5
| | | | | | p4raw-id: //depot/perl@4603
| * more complete pseudo-fork() support for WindowsGurusamy Sarathy1999-12-011-18/+25
| | | | | | p4raw-id: //depot/perl@4602
| * add a synchronous stub fork() for USE_ITHREADS to prove that a simpleGurusamy Sarathy1999-11-151-0/+15
| | | | | | | | | | | | C<if (fork()) { print "parent" } else { print "child" }> works on Windows (incidentally running a cloned^2 interpreter :) p4raw-id: //depot/perl@4589
| * sundry cleanups for cloned interpreters (only known failure modeGurusamy Sarathy1999-11-141-1/+1
| | | | | | | | | | | | is due to regexps keeping non-constant data in their compiled structures) p4raw-id: //depot/perl@4579
| * [5.005_62 PATCH] support link() on WinNT and NTFSJan Dubois1999-11-131-1/+1
| | | | | | | | | | | | | | | | To: perl5-porters@perl.org, Perl-Win32-Porters@activestate.com Cc: Douglas Lankshear <dougl@activestate.com>, Gurusamy Sarathy <gsar@activestate.com> Message-ID: <382b5d24.10899522@smtprelay.t-online.de> p4raw-id: //depot/cfgperl@4571
| * Continue largefileness separation from quadness;Jarkko Hietaniemi1999-11-131-2/+10
| | | | | | | | | | | | move nv-preserving test out of perl.h into Configure; use HAS_SETVBUF in IO. p4raw-id: //depot/cfgperl@4560
| * Try to fix largefileness so that it "works" without a quad IV.Jarkko Hietaniemi1999-11-131-7/+24
| | | | | | p4raw-id: //depot/cfgperl@4559
| * Fix a thinko in 4548.Jarkko Hietaniemi1999-11-111-1/+1
| | | | | | p4raw-id: //depot/cfgperl@4550
| * Integrate with Sarathy.Jarkko Hietaniemi1999-11-111-6/+6
| |\ | | | | | | p4raw-id: //depot/cfgperl@4549
| | * another change towards a shareable optree: avoid pointer to filegvGurusamy Sarathy1999-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | in COP; revert parts of change#4485 and s/xcv_filegv/xcv_file/ (CvFILE() may yet come in handy somewhere); adjust compiler doodads to suit p4raw-link: @4485 on //depot/perl: b195d4879f55e1610299cb9b1b55356940c2a577 p4raw-id: //depot/perl@4545
| | * preliminary support for GVOP indirection via padGurusamy Sarathy1999-11-081-5/+5
| | | | | | | | | p4raw-id: //depot/perl@4539
| * | Try to do something if st_size, st_uid, st_gid are too big for an IV;Jarkko Hietaniemi1999-11-111-14/+40
| | | | | | | | | | | | | | | regen Configure. p4raw-id: //depot/cfgperl@4548
| * | Integrate with Sarathy.Jarkko Hietaniemi1999-11-041-1/+1
| |\ \ | | |/ | | | p4raw-id: //depot/cfgperl@4513
| | * macros for COP.cop_filegv accessGurusamy Sarathy1999-11-011-1/+1
| | | | | | | | | p4raw-id: //depot/perl@4505
| * | Initial integration of the MacPerl changes form Matthias.Jarkko Hietaniemi1999-11-021-2/+2
| |/ | | | | p4raw-id: //depot/cfgperl@4508
| * usurp GVOP slot for new PADOP (one small step to making optreeGurusamy Sarathy1999-10-291-5/+5
| | | | | | | | | | shareable across interpreters) p4raw-id: //depot/perl@4484
| * perldelta updates (see TODO markers)Gurusamy Sarathy1999-10-091-16/+0
| | | | | | p4raw-id: //depot/perl@4325
| * typoGurusamy Sarathy1999-10-081-1/+1
| | | | | | p4raw-id: //depot/perl@4311
| * fix setpgrp vs getpgrp and POSIX vs BSD confusion (spotted byGurusamy Sarathy1999-10-071-1/+1
| | | | | | | | | | Brian Mitchell <brian@chele.cais.net>) p4raw-id: //depot/perl@4310
| * Untangle the IV_IS_QUAD jungle by introdudingJarkko Hietaniemi1999-10-021-8/+1
| | | | | | | | | | | | macros to be used when doing formatted printing: IVdf, UVuf, UVxf, UVof. Also introduce Uid_t_SIGN. p4raw-id: //depot/cfgperl@4288
| * fix buggy popping of subroutine contexts in the lvalueGurusamy Sarathy1999-09-261-1/+1
| | | | | | | | | | | | | | | | | | subroutines implementation (change#4081); correct the plethora of cases where DIE() was more appropriate than croak() p4raw-link: @4081 on //depot/perl: cd06dffe59d60ee6a2fdd7c81f8cef42c7026b36 p4raw-id: //depot/perl@4235
| * Replace change #4100 withRobin Barker1999-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | To: gsar@activestate.com Cc: perl5-porters@perl.org Subject: Re: [ID 19990907.004] [PATCH perl5.005_61] compiler warnings with -Duse64bits Message-Id: <199909131315.OAA24012@tempest.npl.co.uk> p4raw-link: @4100 on //depot/cfgperl: 427181846486e3aa5034a647dc1922377185f4c0 p4raw-id: //depot/cfgperl@4136
| * [ID 19990909.003] MAXINT redefined warning on HP-UX 10.20Daniel S. Lewart1999-09-091-0/+5
| | | | | | | | | | | | To: perl5-porters@perl.org Message-Id: <199909091533.KAA01242@www.cvm.uiuc.edu> p4raw-id: //depot/cfgperl@4114
| * Fix pointer casts.Robin Barker1999-09-071-1/+1
| | | | | | | | | | | | | | | | To: perl5-porters@perl.org Subject: [ID 19990907.004] [PATCH perl5.005_61] compiler warnings with -Duse64bits Message-Id: <199909071130.MAA11435@tempest.npl.co.uk> p4raw-id: //depot/cfgperl@4100
| * Fix a printf thinko: now quads must have the ll L q prefix.Jarkko Hietaniemi1999-09-071-5/+5
| | | | | | | | | | (in other words, a bare %d is an int/unsigned) p4raw-id: //depot/cfgperl@4097
| * Another patch for Lexical WarningsPaul Marquess1999-09-061-2/+2
| | | | | | | | | | Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49BAB@mbtlipnt02.btlabs.bt.co.uk> p4raw-id: //depot/perl@4088