This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fill in link for 5.30.2 epigraph
[perl5.git] / perl.c
2020-03-11 Karl WilliamsonAdd thread safety to some environment accesses
2020-03-11 Karl WilliamsonAdd mutex for accessing ENV
2020-02-05 Dagfinn Ilmari Man... pp_i_modulo(): remove workaround for ancient glibc bug
2020-01-03 Nicolas RBump copyright to 2020 in perl.c and README.
2019-12-18 Karl WilliamsonAdd memCHRs() macro and use it
2019-12-15 Tony CookRevert "Move PL_check to the interp vars to fix threadi...
2019-12-12 Stefan SeifertMove PL_check to the interp vars to fix threading issues
2019-12-11 Karl WilliamsonNote that G_RETHROW is documented
2019-11-27 Karl WilliamsonMove regex global variables to interpreter level
2019-11-18 David Mitchelladd explicit 1-arg and 3-arg sig handler functions
2019-11-17 Karl WilliamsonAdd -Dy debugging of tr///, y///
2019-11-07 Karl Williamsonintrpvar.h: Add variable for use in tr///
2019-11-01 Karl Williamsonperl.c: Remove obsolete comment
2019-09-03 Karl WilliamsonNote that G_METHOD[_NAMED] are documented
2019-09-03 Karl WilliamsonDocument my_exit()
2019-08-07 Tony CookRevert "Revert "postpone perl_parse() exit(0) bugfix""
2019-07-09 Tony CookRevert "postpone perl_parse() exit(0) bugfix"
2019-07-08 Tony Cook(perl #134177) add G_RETHROW flag to eval_sv()
2019-06-25 David Mitchellhonour $PERL_DESTRUCT_LEVEL on non-debug builds
2019-06-18 Steve HayThe Windows CE Chainsaw Massacre
2019-06-05 PaliIn Perl_eval_pv rethrow error via croak_sv()
2019-05-31 Karl WilliamsonRemove redundant info on =for apidoc lines
2019-03-27 Karl WilliamsonPATCH: [perl #133959] Free BSD broken tests
2019-03-25 David Mitchellfix leak in BEGIN { threads->new(...) }
2019-03-21 Karl WilliamsonAdd, improve some debugging stmts for -DL (locales)
2019-02-15 Karl WilliamsonAdd mutex for dealing with qr/\p{user-defined}/
2019-01-20 AbigailBump copyright to 2019 in perl.c and README.
2019-01-05 James E KeenanUse same mixture of hard-tabs and spaces for indent
2018-11-27 Karl WilliamsonAdd USE_THREAD_SAFE_LOCALE to non-bin-compat options...
2018-10-07 Karl Williamsonperl.c: Silence compiler warning
2018-08-05 Karl Williamsonperl.c: Use TAINT_get, instead of PL_tainting.
2018-07-14 Karl WilliamsonMake global two interpreter variables
2018-06-25 Karl Williamsongrok_atoUV: allow non-C strings and document
2018-05-28 David Mitchellrevert perl_run() 0 -> 256 return mapping
2018-04-20 Karl WilliamsonMove inversion lists to utf8.c
2018-03-31 Karl WilliamsonUse compiled-in C structure for inverted case folds
2018-03-31 Karl WilliamsonRemove obsolete variables
2018-03-31 Karl WilliamsonUse charnames inversion lists
2018-03-31 Karl WilliamsonMove init of 2 inversion lists to perl.c
2018-03-26 Karl WilliamsonMove some inversion list init to perl.c
2018-03-26 Karl WilliamsonMove case change invlists from interpreter to global
2018-03-26 Karl WilliamsonMove UTF-8 case changing data into core
2018-03-20 Karl WilliamsonFix locale failures introduced 5 hours ago
2018-03-19 Karl Williamsonperl.c: Free some locale stuff on exit
2018-03-14 Karl WilliamsonMake Unicode data structures global
2018-03-12 Karl WilliamsonDon't create locale object unless threaded
2018-02-26 Yves Ortonmove init_i18nl10n(1) to after the ENTER in perl_construct
2018-02-18 Karl WilliamsonAdd thread-safe locale handling
2018-02-18 Karl WilliamsonAdd Perl_setlocale()
2018-02-18 Karl WilliamsonUse proper #define to see if need PLnumeric underlying_obj
2018-01-31 Karl WilliamsonAvoid changing locale when finding radix char
2018-01-31 Karl Williamsonperl.c: Move initialization of inversion lists
2018-01-19 AbigailUpdate Copyright years in README and perl.c.
2018-01-18 ZeframRevert "Revert "make PerlIO handle FD_CLOEXEC""
2018-01-18 AbigailRevert "make PerlIO handle FD_CLOEXEC"
2018-01-17 Zeframdocument that argv strings must be writable for $0
2018-01-02 Niko TyniAdd missing newline to the "Unable to flush stdout...
2017-12-27 Zeframpostpone perl_parse() exit(0) bugfix
2017-12-25 Karl WilliamsonAdd script_run regex feature
2017-12-22 Zeframset FD_CLOEXEC on debug-leaking-scalars sockets
2017-12-22 Zeframmake PerlIO handle FD_CLOEXEC
2017-12-22 Zeframuse O_CLOEXEC when making fake empty device
2017-12-22 Zeframuse Perl_my_mkstemp() where appropriate
2017-12-22 Zeframfactor out remaining fcntl F_SETFD calls
2017-12-10 Zeframassert well-formedness of argv in perl_parse()
2017-12-10 Zeframremove incorrect doc para about exit from BEGIN
2017-12-10 Zeframproperly define perl_parse() return value
2017-12-08 Aaron CraneRT#132545: memory leak in S_init_main_stash()
2017-11-14 Nicolas RIntroduce macros to simplify @INC setting
2017-11-13 Zeframfix sysconf panic
2017-11-11 Zeframavoid reading errno twice in a row
2017-11-11 Lukas Maiadd wrap_keyword_plugin function (RT #132413)
2017-11-08 Nicolas RAllow custom PL_strtab hash in perl_construct.
2017-11-06 Karl Williamsonperl.c: Use memchr instead of strchr
2017-11-06 Karl WilliamsonUse memBEGINs() in core
2017-11-06 Karl WilliamsonChange some strncmp(), etc. to strBEGINs()
2017-11-06 Karl WilliamsonRename strEQs to strBEGINs; remove strNEs
2017-11-04 Aaron CraneAdd comment to explain why we want to probe for statfs...
2017-11-01 Karl WilliamsonAdd my_memrchr() implementation of memrchr()
2017-11-01 David Mitchellfix Perl_get_cvn_flags() return value
2017-10-31 Father ChrysostomosMake get_cv cope with subrefs
2017-10-21 Aaron CraneDon't attempt to define or use STANDARD_C
2017-10-21 Aaron Craneperl.c: simplify cpp conditionals
2017-10-21 Aaron CraneDon't use VOL internally, because "volatile" works...
2017-10-14 Aaron CraneDelete dead mktemp() call
2017-10-08 Father ChrysostomosDon’t assign PL_curstash twice in init_main_stash
2017-10-07 Craig A. BerryMove PERL_INTERNAL_RAND_SEED set-up after init_stacks().
2017-09-11 Tony Cook(perl #127663) provide limited control for the internal...
2017-09-11 Tony Cook(perl #127663) all platforms no longer require a backup...
2017-09-11 Tony Cook(perl #127663) create a separate random source for...
2017-09-10 Karl WilliamsonAdd API function Perl_langinfo()
2017-08-13 Karl WilliamsonInitialize locale object even in unthreaded perls
2017-08-13 Karl Williamsonlocales: Add #define; change how to override
2017-08-10 Tony Cook(perl #131786) avoid a duplicate symbol error on _LIB_V...
2017-07-27 David Mitchelladd PL_sv_zero
2017-07-03 David Mitchellproperly init si_stack_hwm
2017-06-01 Yves OrtonRestore "get rid of USE_HASH_SEED_EXPLICIT"
2017-06-01 Yves OrtonRestore "Add new hashing and "hash with state" infrastr...
2017-04-23 Yves OrtonRevert "Add new hashing and "hash with state" infrastru...
2017-04-23 Yves OrtonRevert "get rid of USE_HASH_SEED_EXPLICIT"
next