diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-09 22:49:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-09 22:49:50 +0000 |
commit | 5b318f8556255638907de5251e3df225a6cfcdff (patch) | |
tree | b7a70263f76d691d325a44b55cfafbd702eeaf21 /nptl/sysdeps/unix | |
parent | b17203463dc96148641c00fd5eda93fef95475c8 (diff) | |
download | glibc-5b318f8556255638907de5251e3df225a6cfcdff.tar glibc-5b318f8556255638907de5251e3df225a6cfcdff.tar.gz glibc-5b318f8556255638907de5251e3df225a6cfcdff.tar.bz2 glibc-5b318f8556255638907de5251e3df225a6cfcdff.zip |
Update.
(__pthread_cond_signal): Use correct futex pointer in
__lll_mutex_lock_wait call.
* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S index c89851d373..411a05c9e0 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S @@ -108,9 +108,9 @@ __pthread_cond_signal: /* Initial locking failed. */ 1: #if cond_lock == 0 - movl %ebx, %ecx + movl %edi, %ecx #else - leal cond_lock(%ebx), %ecx + leal cond_lock(%edi), %ecx #endif call __lll_mutex_lock_wait jmp 2b |