diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-14 01:12:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-14 01:12:02 +0000 |
commit | a1ea4c0638ecf4ef3c421b03089000aca7d0f0eb (patch) | |
tree | 6ecd88fb4921750225d856d4f425b81e06986d3f /nptl/sysdeps/unix/sysv | |
parent | e8cda341a4e8893a5932a0d22440e7c191c37564 (diff) | |
download | glibc-a1ea4c0638ecf4ef3c421b03089000aca7d0f0eb.tar.gz glibc-a1ea4c0638ecf4ef3c421b03089000aca7d0f0eb.tar.xz glibc-a1ea4c0638ecf4ef3c421b03089000aca7d0f0eb.zip |
Update.
* tst-cond7.c (do_test): Unlock the mutex before canceling the thread. * sysdeps/pthread/pthread.h: Add missing initializers. Protect non-standard initializers with __USE_GNU.
Diffstat (limited to 'nptl/sysdeps/unix/sysv')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S index b2a5d53e31..fffef03bd5 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S @@ -65,7 +65,8 @@ __pthread_cond_broadcast: cmpl (%ebx), %ecx jna 4f - /* Case all currently waiting threads to wake up. */ + /* Cause all currently waiting threads to recognize they are + woken up. */ 3: movl %ecx, (%ebx) movl %eax, 4(%ebx) |