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 b190bccc8a configure: Replaced obsolete AC_TRY_COMPILE adds 6a86bc0992 AArch64: Add support for roundeven[f] new 0c78b0bb78 iconvconfig: Make file handling more general purpose new 3979c3e1ba iconvconfig: Read configuration from gconv-modules.d subdirectory new b17d29b390 gconv_conf: Read configuration files in gconv-modules.d new fc5bfade69 iconvdata: Move gconv-modules configuration to gconv-modules.conf new 5a5b481365 iconvdata: Split out non-essential gconv module configuration new 51a3df5e35 Fix elf/tst-tls9-static after libdl cleanups. new 699361795f Remove stale references to libdl.a new 02189e8fb0 nptl: Deallocate the thread stack on setup failure (BZ #19511) new 41c7295617 nptl: Install cancellation handler on pthread_cancel new 26cfbb7162 nptl: Remove CANCELING_BITMASK new 2b51742531 nptl: Move cancel state out of cancelhandling new 8c1c0aae20 nptl: Move cancel type out of cancelhandling new f779b1efb3 nptl: Implement raise in terms of pthread_kill new a6c813d0ad nptl: Use pthread_kill on pthread_cancel new 8fe503f74e nptl: Avoid async cancellation to wrongly update __nptl_nthr [...]
The 15 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 | 9 +- iconv/gconv_conf.c | 49 +++++- iconv/iconvconfig.c | 103 ++++++++--- iconvdata/Makefile | 46 +++-- .../{gconv-modules => gconv-modules-extra.conf} | 83 --------- iconvdata/gconv-modules.conf | 115 +++++++++++++ include/pthread.h | 5 + localedata/Makefile | 4 +- manual/pattern.texi | 1 - manual/process.texi | 3 +- nptl/Makefile | 1 + nptl/Versions | 3 +- nptl/allocatestack.c | 3 + nptl/cancellation.c | 62 ++----- nptl/cleanup_defer.c | 46 +---- nptl/descr.h | 32 ++-- nptl/libc-cleanup.c | 46 +---- nptl/pthreadP.h | 24 +-- nptl/pthread_cancel.c | 146 +++++----------- nptl/pthread_create.c | 188 +++++++++------------ nptl/pthread_join_common.c | 7 +- nptl/pthread_kill.c | 54 ++++-- nptl/pthread_self.c | 4 +- nptl/pthread_setcancelstate.c | 36 +--- nptl/pthread_setcanceltype.c | 41 +---- nptl/pthread_testcancel.c | 11 +- sysdeps/aarch64/fpu/{s_fmin.c => s_roundeven.c} | 11 +- .../fpu/s_fabsf.c => aarch64/fpu/s_roundevenf.c} | 11 +- sysdeps/htl/pthreadP.h | 2 - sysdeps/nptl/dl-tls_init_tp.c | 3 + sysdeps/posix/raise.c | 11 +- sysdeps/powerpc/Makefile | 1 - sysdeps/powerpc/powerpc64/Makefile | 1 - sysdeps/s390/Makefile | 16 +- .../{gconv-modules => gconv-modules-s390.conf} | 0 sysdeps/unix/sysv/linux/raise.c | 52 ------ 36 files changed, 544 insertions(+), 686 deletions(-) rename iconvdata/{gconv-modules => gconv-modules-extra.conf} (95%) create mode 100644 iconvdata/gconv-modules.conf copy sysdeps/aarch64/fpu/{s_fmin.c => s_roundeven.c} (78%) copy sysdeps/{x86_64/fpu/s_fabsf.c => aarch64/fpu/s_roundevenf.c} (80%) rename sysdeps/s390/{gconv-modules => gconv-modules-s390.conf} (100%) delete mode 100644 sysdeps/unix/sysv/linux/raise.c