mirror of git://sourceware.org/git/glibc.git
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
Fix typos.
This commit is contained in:
parent
f04125597e
commit
5232c93914
|
|
@ -1,5 +1,8 @@
|
||||||
2002-10-11 Roland McGrath <roland@redhat.com>
|
2002-10-11 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
|
||||||
|
Fix typos.
|
||||||
|
|
||||||
* sysdeps/generic/dl-lookupcfg.h: Include <tls.h>.
|
* sysdeps/generic/dl-lookupcfg.h: Include <tls.h>.
|
||||||
* sysdeps/sh/dl-lookupcfg.h: File removed.
|
* sysdeps/sh/dl-lookupcfg.h: File removed.
|
||||||
* sysdeps/i386/dl-lookupcfg.h: File removed.
|
* sysdeps/i386/dl-lookupcfg.h: File removed.
|
||||||
|
|
|
||||||
|
|
@ -88,14 +88,18 @@
|
||||||
movq errno@GOTTPOFF(%rip), %rcx; \
|
movq errno@GOTTPOFF(%rip), %rcx; \
|
||||||
xorq %rdx, %rdx; \
|
xorq %rdx, %rdx; \
|
||||||
subq %rax, %rdx; \
|
subq %rax, %rdx; \
|
||||||
movl %eax, %fs:0(%rcx);
|
movl %edx, %fs:(%rcx); \
|
||||||
|
orq $-1, %rax; \
|
||||||
|
jmp L(pseudo_end);
|
||||||
#elif RTLD_PRIVATE_ERRNO
|
#elif RTLD_PRIVATE_ERRNO
|
||||||
# define SYSCALL_ERROR_HANDLER \
|
# define SYSCALL_ERROR_HANDLER \
|
||||||
0: \
|
0: \
|
||||||
leaq errno(%rip), %rcx; \
|
leaq errno(%rip), %rcx; \
|
||||||
xorq %rdx, %rdx; \
|
xorq %rdx, %rdx; \
|
||||||
subq %rax, %rdx; \
|
subq %rax, %rdx; \
|
||||||
movl %eax, (%rcx);
|
movl %edx, (%rcx); \
|
||||||
|
orq $-1, %rax; \
|
||||||
|
jmp L(pseudo_end);
|
||||||
#elif defined _LIBC_REENTRANT
|
#elif defined _LIBC_REENTRANT
|
||||||
/* Store (- %rax) into errno through the GOT.
|
/* Store (- %rax) into errno through the GOT.
|
||||||
Note that errno occupies only 4 bytes. */
|
Note that errno occupies only 4 bytes. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue