This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 5116301943 build-many-glibcs.py: Fix s390x-linux-gnu. new 0d5f77cd3a nptl: Use __futex_abstimed_wait64 on pthread_create (BZ 33715) new 2d865eaa12 nptl: Set cancellation type and state on pthread_exit (BZ #28267) new 5da15b15ad nptl: Do not use pthread set_tid_address as state synchroniz [...] new f7648bf443 nptl: Remove INVALID_TD_P new 793f680101 support: Add support_thread_state_wait new 440108ce9e nptl: Make pthread_{clock, timed}join{_np} act on all cancel [...] new 9021707ca7 elf: Support vDSO with more than one PT_LOAD with v_addr sta [...] new 42b4589f28 math: Do not use __builtin_isgreater* and __builtin_isless* [...] new 65f55bb7e5 stdlib: Avoid strlen plt with clang
The 9 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/setup-vdso.h | 8 +- math/math.h | 2 +- nptl/Makefile | 3 + nptl/descr.h | 26 ++-- nptl/nptl-stack.h | 2 +- nptl/pthread_cancel.c | 3 +- nptl/pthread_create.c | 39 +++-- nptl/pthread_detach.c | 44 +++--- nptl/pthread_getattr_np.c | 2 +- nptl/pthread_getcpuclockid.c | 2 +- nptl/pthread_getschedparam.c | 2 +- nptl/pthread_join_common.c | 118 +++++---------- nptl/pthread_setschedparam.c | 2 +- nptl/pthread_setschedprio.c | 2 +- nptl/pthread_tryjoin.c | 25 +++- ...pthread-attr-affinity-fail.c => tst-cancel33.c} | 34 ++++- nptl/tst-cancel34.c | 107 ++++++++++++++ nptl/tst-cleanup5.c | 164 +++++++++++++++++++++ support/process_state.h | 9 ++ support/support_process_state.c | 71 +++++++-- sysdeps/generic/symbol-hacks.h | 1 + sysdeps/nptl/dl-tls_init_tp.c | 3 +- sysdeps/nptl/libc_start_call_main.h | 9 ++ sysdeps/nptl/pthreadP.h | 22 ++- sysdeps/pthread/Makefile | 1 + sysdeps/pthread/tst-pthread-exited.c | 119 +++++++++++++++ sysdeps/pthread/tst-thrd-detach.c | 8 +- 27 files changed, 662 insertions(+), 166 deletions(-) copy nptl/{tst-pthread-attr-affinity-fail.c => tst-cancel33.c} (73%) create mode 100644 nptl/tst-cancel34.c create mode 100644 nptl/tst-cleanup5.c create mode 100644 sysdeps/pthread/tst-pthread-exited.c