This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from c0ff3be Revert "Fix ChangeLog typo" new ed19993 New condvar implementation that provides stronger ordering gu [...]
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 | 74 ++ nptl/DESIGN-condvar.txt | 134 --- nptl/Makefile | 6 +- nptl/lowlevelcond.sym | 16 - nptl/nptl-printers.py | 70 +- nptl/nptl_lock_constants.pysym | 27 +- nptl/pthreadP.h | 7 + nptl/pthread_cond_broadcast.c | 99 ++- nptl/pthread_cond_common.c | 466 ++++++++++ nptl/pthread_cond_destroy.c | 82 +- nptl/pthread_cond_init.c | 28 +- nptl/pthread_cond_signal.c | 99 ++- nptl/pthread_cond_timedwait.c | 268 ------ nptl/pthread_cond_wait.c | 754 ++++++++++++---- nptl/pthread_condattr_getclock.c | 2 +- nptl/pthread_condattr_getpshared.c | 3 +- nptl/pthread_condattr_init.c | 4 +- nptl/pthread_condattr_setclock.c | 11 +- nptl/test-cond-printers.py | 2 +- nptl/tst-cond1.c | 3 + nptl/tst-cond20.c | 5 +- nptl/tst-cond22.c | 18 +- sysdeps/aarch64/nptl/bits/pthreadtypes.h | 31 +- sysdeps/arm/nptl/bits/pthreadtypes.h | 29 +- sysdeps/ia64/nptl/bits/pthreadtypes.h | 31 +- sysdeps/m68k/nptl/bits/pthreadtypes.h | 32 +- sysdeps/microblaze/nptl/bits/pthreadtypes.h | 29 +- sysdeps/mips/nptl/bits/pthreadtypes.h | 31 +- sysdeps/nios2/nptl/bits/pthreadtypes.h | 31 +- sysdeps/nptl/internaltypes.h | 17 +- sysdeps/nptl/pthread.h | 2 +- sysdeps/s390/nptl/bits/pthreadtypes.h | 29 +- sysdeps/sh/nptl/bits/pthreadtypes.h | 29 +- sysdeps/tile/nptl/bits/pthreadtypes.h | 29 +- sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h | 31 +- sysdeps/unix/sysv/linux/hppa/internaltypes.h | 40 +- .../unix/sysv/linux/hppa/pthread_cond_timedwait.c | 41 - sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c | 13 + .../sysv/linux/i386/i686/pthread_cond_timedwait.S | 20 - .../unix/sysv/linux/i386/pthread_cond_broadcast.S | 241 ----- sysdeps/unix/sysv/linux/i386/pthread_cond_signal.S | 216 ----- .../unix/sysv/linux/i386/pthread_cond_timedwait.S | 974 --------------------- sysdeps/unix/sysv/linux/i386/pthread_cond_wait.S | 642 -------------- .../unix/sysv/linux/powerpc/bits/pthreadtypes.h | 31 +- .../sysv/linux/x86_64/pthread_cond_broadcast.S | 177 ---- .../unix/sysv/linux/x86_64/pthread_cond_signal.S | 161 ---- .../sysv/linux/x86_64/pthread_cond_timedwait.S | 623 ------------- sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S | 555 ------------ sysdeps/x86/bits/pthreadtypes.h | 29 +- 49 files changed, 1671 insertions(+), 4621 deletions(-) delete mode 100644 nptl/DESIGN-condvar.txt delete mode 100644 nptl/lowlevelcond.sym create mode 100644 nptl/pthread_cond_common.c delete mode 100644 nptl/pthread_cond_timedwait.c delete mode 100644 sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c delete mode 100644 sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S delete mode 100644 sysdeps/unix/sysv/linux/i386/pthread_cond_broadcast.S delete mode 100644 sysdeps/unix/sysv/linux/i386/pthread_cond_signal.S delete mode 100644 sysdeps/unix/sysv/linux/i386/pthread_cond_timedwait.S delete mode 100644 sysdeps/unix/sysv/linux/i386/pthread_cond_wait.S delete mode 100644 sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S delete mode 100644 sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S delete mode 100644 sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S delete mode 100644 sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S