Update copyright notices with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / i386 / sysdep.S
blob249a11543eafed77aa2043687bb3081895b64cf4
1 /* Copyright (C) 1991-2013 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <http://www.gnu.org/licenses/>.  */
18 #include <sysdep.h>
19 #define _ERRNO_H
20 #include <bits/errno.h>
21 #include <bp-asm.h>
22 #include <bp-sym.h>
24 #ifdef IS_IN_rtld
25 # include <dl-sysdep.h>         /* Defines RTLD_PRIVATE_ERRNO.  */
26 #endif
28 .globl C_SYMBOL_NAME(errno)
29 .globl syscall_error
31 __syscall_error:
32 #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
33         /* We translate the system's EWOULDBLOCK error into EAGAIN.
34            The GNU C library always defines EWOULDBLOCK==EAGAIN.
35            EWOULDBLOCK_sys is the original number.  */
36         cmpl $EWOULDBLOCK_sys, %eax /* Is it the old EWOULDBLOCK?  */
37         jne notb                /* Branch if not.  */
38         movl $EAGAIN, %eax      /* Yes; translate it to EAGAIN.  */
39 notb:
40 #endif
41 #ifndef PIC
42 # ifndef NO_TLS_DIRECT_SEG_REFS
43         movl %eax, %gs:C_SYMBOL_NAME(errno@NTPOFF)
44 # else
45         movl %gs:0, %ecx
46         movl %eax, C_SYMBOL_NAME(errno@NTPOFF)(%ecx)
47 # endif
48 #else
49         /* The caller has pushed %ebx and then set it up to
50            point to the GOT before calling us through the PLT.  */
51         movl C_SYMBOL_NAME(errno@GOTNTPOFF)(%ebx), %ecx
53         /* Pop %ebx value saved before jumping here.  */
54         popl %ebx
55 # ifndef NO_TLS_DIRECT_SEG_REFS
56         addl %gs:0, %ecx
57         movl %eax, (%ecx)
58 # else
59         movl %eax, %gs:0(%ecx)
60 # endif
61 #endif
62         movl $-1, %eax
63         ret
65 #undef  __syscall_error
66 END (__syscall_error)