diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-04 02:12:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-04 02:12:26 +0000 |
commit | b1151300d6e9af599cc91a5c56799feaf49b2e2d (patch) | |
tree | 463de8146792d2d29cd99af0e25694934c70d3d8 /nptl/sysdeps | |
parent | 75c43017cb843ef4fd05ba342b858084d775405a (diff) | |
download | glibc-b1151300d6e9af599cc91a5c56799feaf49b2e2d.tar glibc-b1151300d6e9af599cc91a5c56799feaf49b2e2d.tar.gz glibc-b1151300d6e9af599cc91a5c56799feaf49b2e2d.tar.bz2 glibc-b1151300d6e9af599cc91a5c56799feaf49b2e2d.zip |
Update.
* sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S
(condvar_cleanup): Get condvar address from the right place.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S index 0187bf8253..5afe53d484 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelcond.S @@ -45,7 +45,7 @@ .type condvar_cleanup, @function condvar_cleanup: pushl %ebx - movl 4(%esp), %ebx + movl 8(%esp), %ebx #if cond_lock != 0 addl $cond_lock, %ebx #endif |