[Perl/perl5] 197240: locale.c: Comments/white-space

2023-10-08 Thread Karl Williamson via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 19724077f55f950da374a2d33fb5de8f5afe4939
  
https://github.com/Perl/perl5/commit/19724077f55f950da374a2d33fb5de8f5afe4939
  Author: Karl Williamson 
  Date:   2023-10-08 (Sun, 08 Oct 2023)

  Changed paths:
M locale.c

  Log Message:
  ---
  locale.c: Comments/white-space


  Commit: 54b519ce9f48eefc96f484f5b7b9596382829294
  
https://github.com/Perl/perl5/commit/54b519ce9f48eefc96f484f5b7b9596382829294
  Author: Karl Williamson 
  Date:   2023-10-08 (Sun, 08 Oct 2023)

  Changed paths:
M locale.c

  Log Message:
  ---
  locale.c: Handle input parameter

calculate_LC_ALL_string() takes an input parameter specifying where the
caller wants the return value to be placed.  It wasn't handling one of
the possible values for that parameter.  This was spotted by Tony Cook.

I stashed the code that does the handling during a 'rebase -i', and
forgot to unstash it.

This fixes #20810


Compare: https://github.com/Perl/perl5/compare/83197ba1fb19...54b519ce9f48


[Perl/perl5]

2023-10-08 Thread Karl Williamson via perl5-changes
  Branch: refs/heads/smoke-me/khw-WANT
  Home:   https://github.com/Perl/perl5


[Perl/perl5] 39a2f5: Fix T_SIGNO and T_FD to work with any variable name

2023-10-08 Thread Leon Timmermans via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 39a2f5189aa4987764e08980e12dcc0d848ee64d
  
https://github.com/Perl/perl5/commit/39a2f5189aa4987764e08980e12dcc0d848ee64d
  Author: Leon Timmermans 
  Date:   2023-10-09 (Mon, 09 Oct 2023)

  Changed paths:
M ext/POSIX/typemap

  Log Message:
  ---
  Fix T_SIGNO and T_FD to work with any variable name


  Commit: 875bf7b24187932e089090606f810195dd0a8bc3
  
https://github.com/Perl/perl5/commit/875bf7b24187932e089090606f810195dd0a8bc3
  Author: Leon Timmermans 
  Date:   2023-10-09 (Mon, 09 Oct 2023)

  Changed paths:
M ext/POSIX/typemap

  Log Message:
  ---
  Remove unnecessary typemaps from POSIX


  Commit: 83197ba1fb19f3877d0f458a616f08c2fc38dbbf
  
https://github.com/Perl/perl5/commit/83197ba1fb19f3877d0f458a616f08c2fc38dbbf
  Author: Leon Timmermans 
  Date:   2023-10-09 (Mon, 09 Oct 2023)

  Changed paths:
M ext/POSIX/typemap

  Log Message:
  ---
  Make *id_t types in POSIX integer types


Compare: https://github.com/Perl/perl5/compare/75d974a58c46...83197ba1fb19


[Perl/perl5] 75d974: Fix intermittent failure of test t/op/sigsystem.t

2023-10-08 Thread wlyu2 via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 75d974a58c461b3b5d35280e497810e46abae4ca
  
https://github.com/Perl/perl5/commit/75d974a58c461b3b5d35280e497810e46abae4ca
  Author: William Lyu 
  Date:   2023-10-08 (Sun, 08 Oct 2023)

  Changed paths:
M AUTHORS
M t/op/sigsystem.t

  Log Message:
  ---
  Fix intermittent failure of test t/op/sigsystem.t

This fix addresses the intermittent failure of the test
t/op/sigsystem.t by improving its robustness. Before the fix, this
test waits a hard-coded amount of time in the parent process for the
child process to exit, and the child process may not be able to exit
soon enough. With this fix, the parent process in this test polls for
whether the SIGCHLD handler reaped the child process for at most 25
seconds.

Signed-off-by: William Lyu 
Signed-off-by: Randy MacLeod 

Committer: William Lyu is now a Perl author.