This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from fbb31e2 XFAIL libm-test.inc tests as needed for ibm128. new cc25c8b New pthread rwlock that is more scalable.
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: ChangeLog | 55 ++ nptl/DESIGN-rwlock.txt | 113 --- nptl/Makefile | 11 +- nptl/lowlevelrwlock.sym | 16 - nptl/nptl-printers.py | 48 +- nptl/nptl_lock_constants.pysym | 5 + nptl/pthreadP.h | 13 +- nptl/pthread_rwlock_common.c | 924 +++++++++++++++++++++ nptl/pthread_rwlock_init.c | 25 +- nptl/pthread_rwlock_rdlock.c | 158 +--- nptl/pthread_rwlock_timedrdlock.c | 127 +-- nptl/pthread_rwlock_timedwrlock.c | 127 +-- nptl/pthread_rwlock_tryrdlock.c | 105 ++- nptl/pthread_rwlock_trywrlock.c | 53 +- nptl/pthread_rwlock_unlock.c | 53 +- nptl/pthread_rwlock_wrlock.c | 106 +-- nptl/test-rwlock-printers.py | 8 +- nptl/test-rwlockattr-printers.c | 2 + nptl/test-rwlockattr-printers.py | 3 + nptl/tst-rwlock10.c | 2 +- nptl/tst-rwlock11.c | 2 +- .../tst-rwlock17.c | 6 +- .../tst-rwlock18.c | 6 +- nptl/{tst-rwlock8.c => tst-rwlock19.c} | 112 +-- nptl/tst-rwlock2b.c | 2 + nptl/tst-rwlock8.c | 25 +- nptl/tst-rwlock9.c | 25 +- sysdeps/aarch64/nptl/bits/pthreadtypes.h | 14 +- sysdeps/arm/nptl/bits/pthreadtypes.h | 14 +- sysdeps/hppa/nptl/bits/pthreadtypes.h | 14 +- sysdeps/ia64/nptl/bits/pthreadtypes.h | 14 +- sysdeps/m68k/nptl/bits/pthreadtypes.h | 14 +- sysdeps/microblaze/nptl/bits/pthreadtypes.h | 14 +- sysdeps/mips/nptl/bits/pthreadtypes.h | 28 +- sysdeps/nios2/nptl/bits/pthreadtypes.h | 14 +- sysdeps/s390/nptl/bits/pthreadtypes.h | 28 +- sysdeps/sh/nptl/bits/pthreadtypes.h | 14 +- sysdeps/sparc/nptl/bits/pthreadtypes.h | 28 +- sysdeps/tile/nptl/bits/pthreadtypes.h | 28 +- sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h | 14 +- .../unix/sysv/linux/powerpc/bits/pthreadtypes.h | 28 +- sysdeps/x86/bits/pthreadtypes.h | 28 +- 42 files changed, 1429 insertions(+), 997 deletions(-) delete mode 100644 nptl/DESIGN-rwlock.txt delete mode 100644 nptl/lowlevelrwlock.sym create mode 100644 nptl/pthread_rwlock_common.c copy malloc/tst-interpose-static-thread.c => nptl/tst-rwlock17.c (84%) copy malloc/tst-interpose-static-thread.c => nptl/tst-rwlock18.c (84%) copy nptl/{tst-rwlock8.c => tst-rwlock19.c} (53%) create mode 100644 nptl/tst-rwlock2b.c