This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/glibc.
from 5baad9a6f9 hurd: Fix longjmp check for sigstate adds 07ed32f920 elf: Change TLS static surplus default back to 1664 adds 63ce2425c2 Use MPFR 4.1.0 in build-many-glibcs.py. adds 469c03907b Update powerpc-nofpu libm-test-ulps. adds 299210c1fa nss_files: Consolidate file opening in __nss_files_fopen adds 23ed36735a nss_compat: Do not use mmap to read database files (bug 26258) adds e9b2340998 nss_files: Consolidate line parse declarations in <nss_files.h> adds 9980bf0b30 nss_files: Use generic result pointer in parse_line adds d4b4586315 libio: Add fseterr_unlocked for internal use adds bdee910e88 nss: Add __nss_fgetent_r adds 4f62a21d0e grp: Implement fgetgrent_r using __nss_fgetent_r adds 2add4235ef gshadow: Implement fgetsgent_r using __nss_fgetent_r (bug 20338) adds ee1c062be0 pwd: Implement fgetpwent_r using __nss_fgetent_r adds 00bc6830e3 shadow: Implement fgetspent_r using __nss_fgetent_r adds ec2f1fddf2 libio: Remove __libc_readline_unlocked adds c79607a474 powerpc64le: guarantee a .gnu.attributes section [BZ #26220] new f6add169c8 powerpc: Fix POWER10 selection
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: elf/Makefile | 4 +- elf/dl-tls.c | 37 +++- elf/{tst-filterobj-dlopen.c => tst-tls-surplus.c} | 31 +-- grp/fgetgrent_r.c | 54 +---- gshadow/Makefile | 2 +- gshadow/fgetsgent_r.c | 41 +--- gshadow/tst-fgetsgent_r.c | 192 +++++++++++++++++ include/grp.h | 6 - include/gshadow.h | 6 - include/netdb.h | 13 -- include/netinet/ether.h | 6 - include/nss_files.h | 84 ++++++++ include/pwd.h | 6 - include/rpc/netdb.h | 6 - include/shadow.h | 6 - include/stdio.h | 20 +- libio/Makefile | 4 +- libio/Versions | 1 - libio/readline.c | 170 --------------- libio/tst-readline.c | 237 --------------------- nss/Makefile | 4 +- nss/Versions | 1 + nss/nss_compat/compat-grp.c | 6 +- nss/nss_compat/compat-initgroups.c | 6 +- nss/nss_compat/compat-pwd.c | 6 +- nss/nss_compat/compat-spwd.c | 6 +- nss/nss_fgetent_r.c | 55 +++++ nss/nss_files/files-XXX.c | 82 +++---- nss/nss_files/files-alias.c | 5 +- nss/nss_files/files-initgroups.c | 6 +- nss/nss_files/files-netgrp.c | 5 +- nss/nss_files/files-parse.c | 6 +- .../mod-cache-ppc.c => nss/nss_files_fopen.c | 40 ++-- .../nss_parse_line_result.c | 34 +-- nss/nss_readline.c | 99 +++++++++ pwd/fgetpwent_r.c | 43 +--- scripts/build-many-glibcs.py | 2 +- shadow/fgetspent_r.c | 43 +--- sysdeps/powerpc/dl-procinfo.h | 1 + sysdeps/powerpc/nofpu/libm-test-ulps | 60 +++--- sysdeps/powerpc/powerpc64/le/Makefile | 8 + 41 files changed, 648 insertions(+), 796 deletions(-) copy elf/{tst-filterobj-dlopen.c => tst-tls-surplus.c} (58%) create mode 100644 gshadow/tst-fgetsgent_r.c create mode 100644 include/nss_files.h delete mode 100644 libio/readline.c delete mode 100644 libio/tst-readline.c create mode 100644 nss/nss_fgetent_r.c copy sysdeps/powerpc/mod-cache-ppc.c => nss/nss_files_fopen.c (53%) copy nptl/pthread_attr_getsigmask.c => nss/nss_parse_line_result.c (57%) create mode 100644 nss/nss_readline.c