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-aarch64-build_cross in repository toolchain/ci/glibc.
from d7fe71d842 htl: Fix linking static examples against libpthread adds 135425a1dd nss: Fix build error with --disable-nscd new d8ea0d0168 Add an internal wrapper for clone, clone2 and clone3 new 24c78e2c75 x86-64: Add the clone3 wrapper new 84d40d702f Add static tests for __clone_internal new 0e1f068108 Fix linknamespace errors and local-plt-usages in nss_files. new ba33937be2 elf: Fix DTV gap reuse logic (BZ #27135)
The 5 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 | 64 ++++- elf/dl-close.c | 8 +- elf/dl-load.c | 2 +- elf/dl-open.c | 10 - elf/dl-tls.c | 17 +- elf/rtld.c | 2 +- elf/tst-tls20.c | 275 ++++++++++++++++++++- include/clone_internal.h | 16 ++ nptl/allocatestack.c | 59 +---- nptl/pthread_create.c | 38 +-- nss/nss_files/files-alias.c | 4 +- nss/nss_files/files-initgroups.c | 4 +- nss/nss_files/files-netgrp.c | 6 +- nss/nss_module.c | 6 +- nss/nss_readline.c | 2 +- sysdeps/generic/ldsodefs.h | 4 +- sysdeps/unix/sysv/linux/Makefile | 12 +- sysdeps/unix/sysv/linux/clone-internal.c | 91 +++++++ sysdeps/unix/sysv/linux/clone3.c | 1 + sysdeps/unix/sysv/linux/clone3.h | 67 +++++ sysdeps/unix/sysv/linux/spawni.c | 26 +- sysdeps/unix/sysv/linux/tst-align-clone-internal.c | 68 +++++ sysdeps/unix/sysv/linux/tst-clone2-internal.c | 126 ++++++++++ sysdeps/unix/sysv/linux/tst-clone3-internal.c | 99 ++++++++ sysdeps/unix/sysv/linux/tst-getpid1-internal.c | 133 ++++++++++ .../unix/sysv/linux/tst-misalign-clone-internal.c | 74 ++++++ sysdeps/unix/sysv/linux/x86_64/clone3.S | 92 +++++++ sysdeps/unix/sysv/linux/x86_64/sysdep.h | 2 + 28 files changed, 1177 insertions(+), 131 deletions(-) create mode 100644 include/clone_internal.h create mode 100644 sysdeps/unix/sysv/linux/clone-internal.c create mode 100644 sysdeps/unix/sysv/linux/clone3.c create mode 100644 sysdeps/unix/sysv/linux/clone3.h create mode 100644 sysdeps/unix/sysv/linux/tst-align-clone-internal.c create mode 100644 sysdeps/unix/sysv/linux/tst-clone2-internal.c create mode 100644 sysdeps/unix/sysv/linux/tst-clone3-internal.c create mode 100644 sysdeps/unix/sysv/linux/tst-getpid1-internal.c create mode 100644 sysdeps/unix/sysv/linux/tst-misalign-clone-internal.c create mode 100644 sysdeps/unix/sysv/linux/x86_64/clone3.S