Update copyright notices with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / x86_64 / sysdep.S
blob7f2daa6663327b3ac545f54b657433040bdba198
1 /* Copyright (C) 2001-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>
23 #include <tls.h>
25 #ifdef IS_IN_rtld
26 # include <dl-sysdep.h>         /* Defines RTLD_PRIVATE_ERRNO.  */
27 #endif
29 .globl C_SYMBOL_NAME(errno)
30 .globl syscall_error
32 __syscall_error:
33 #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
34         /* We translate the system's EWOULDBLOCK error into EAGAIN.
35            The GNU C library always defines EWOULDBLOCK==EAGAIN.
36            EWOULDBLOCK_sys is the original number.  */
37         cmp $EWOULDBLOCK_sys, %RAX_LP /* Is it the old EWOULDBLOCK?  */
38         jne notb                /* Branch if not.  */
39         movl $EAGAIN, %eax      /* Yes; translate it to EAGAIN.  */
40 notb:
41 #endif
42 #ifdef PIC
43         movq C_SYMBOL_NAME(errno@GOTTPOFF)(%rip), %rcx
44         movl %eax, %fs:0(%rcx)
45 #else
46         movl %eax, %fs:C_SYMBOL_NAME(errno@TPOFF)
47 #endif
48         or $-1, %RAX_LP
49         ret
51 #undef  __syscall_error
52 END (__syscall_error)