mirror of git://sourceware.org/git/glibc.git
Update.
2002-12-16 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/socket.S [NEED_CANCELLATION && CENABLE]: Don't lose content of %ebx.
This commit is contained in:
parent
bd499a3b46
commit
26a026b940
|
|
@ -1,3 +1,8 @@
|
||||||
|
2002-12-16 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/i386/socket.S [NEED_CANCELLATION &&
|
||||||
|
CENABLE]: Don't lose content of %ebx.
|
||||||
|
|
||||||
2002-12-17 Jakub Jelinek <jakub@redhat.com>
|
2002-12-17 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/i386/socket.S: Use SINGLE_THREAD_P
|
* sysdeps/unix/sysv/linux/i386/socket.S: Use SINGLE_THREAD_P
|
||||||
|
|
|
||||||
|
|
@ -91,13 +91,15 @@ L(pseudo_end):
|
||||||
/* Do the system call trap. */
|
/* Do the system call trap. */
|
||||||
int $0x80
|
int $0x80
|
||||||
|
|
||||||
|
/* Restore registers. */
|
||||||
|
movl %edx, %ebx
|
||||||
|
|
||||||
/* Restore the cancellation. */
|
/* Restore the cancellation. */
|
||||||
xchgl %esi, %eax
|
xchgl %esi, %eax
|
||||||
CDISABLE
|
CDISABLE
|
||||||
|
|
||||||
/* Restore registers. */
|
/* Restore registers. */
|
||||||
movl %esi, %eax
|
movl %esi, %eax
|
||||||
movl %edx, %ebx
|
|
||||||
popl %esi
|
popl %esi
|
||||||
|
|
||||||
/* %eax is < 0 if there was an error. */
|
/* %eax is < 0 if there was an error. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue