diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-10 23:43:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-10 23:43:49 +0000 |
commit | defd18709cb11143dd37d00e0d74cf12ec7153e2 (patch) | |
tree | af39acb35070815e5a348f60253d91f8f510d6ef /nptl/sysdeps/unix/sysv/linux | |
parent | 2a8a8a846166717fc5f30b7b8719cab0abb5889a (diff) | |
download | glibc-defd18709cb11143dd37d00e0d74cf12ec7153e2.tar.gz glibc-defd18709cb11143dd37d00e0d74cf12ec7153e2.tar.xz glibc-defd18709cb11143dd37d00e0d74cf12ec7153e2.zip |
Update.
* Makefile (tests): Add tst-once3 and tst-once4. * tst-once4.c: New file.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S b/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S index 62a1ec2da7..9c4647c60b 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S @@ -147,8 +147,8 @@ clear_once_control: pushl %esi pushl %ebx - movl 12(%esp), %eax - movl $0, (%eax) + movl 12(%esp), %ebx + movl $0, (%ebx) xorl %esi, %esi movl $0x7fffffff, %edx |