Blame sysdeps/unix/i386/sysdep.S

Packit 6c4009
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <sysdep.h>
Packit 6c4009
#define _ERRNO_H
Packit 6c4009
#include <bits/errno.h>
Packit 6c4009
Packit 6c4009
#if IS_IN (rtld)
Packit 6c4009
# include <dl-sysdep.h>		/* Defines RTLD_PRIVATE_ERRNO.  */
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
.globl C_SYMBOL_NAME(errno)
Packit 6c4009
.globl syscall_error
Packit 6c4009
Packit 6c4009
__syscall_error:
Packit 6c4009
#if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
Packit 6c4009
	/* We translate the system's EWOULDBLOCK error into EAGAIN.
Packit 6c4009
	   The GNU C library always defines EWOULDBLOCK==EAGAIN.
Packit 6c4009
	   EWOULDBLOCK_sys is the original number.  */
Packit 6c4009
	cmpl $EWOULDBLOCK_sys, %eax /* Is it the old EWOULDBLOCK?  */
Packit 6c4009
	jne notb		/* Branch if not.  */
Packit 6c4009
	movl $EAGAIN, %eax	/* Yes; translate it to EAGAIN.  */
Packit 6c4009
notb:
Packit 6c4009
#endif
Packit 6c4009
#ifndef	PIC
Packit 6c4009
# ifndef NO_TLS_DIRECT_SEG_REFS
Packit 6c4009
	movl %eax, %gs:C_SYMBOL_NAME(errno@NTPOFF)
Packit 6c4009
# else
Packit 6c4009
	movl %gs:0, %ecx
Packit 6c4009
	movl %eax, C_SYMBOL_NAME(errno@NTPOFF)(%ecx)
Packit 6c4009
# endif
Packit 6c4009
#else
Packit 6c4009
	/* The caller has pushed %ebx and then set it up to
Packit 6c4009
	   point to the GOT before calling us through the PLT.  */
Packit 6c4009
	movl C_SYMBOL_NAME(errno@GOTNTPOFF)(%ebx), %ecx
Packit 6c4009
Packit 6c4009
	/* Pop %ebx value saved before jumping here.  */
Packit 6c4009
	popl %ebx
Packit 6c4009
# ifndef NO_TLS_DIRECT_SEG_REFS
Packit 6c4009
	addl %gs:0, %ecx
Packit 6c4009
	movl %eax, (%ecx)
Packit 6c4009
# else
Packit 6c4009
	movl %eax, %gs:0(%ecx)
Packit 6c4009
# endif
Packit 6c4009
#endif
Packit 6c4009
	movl $-1, %eax
Packit 6c4009
	ret
Packit 6c4009
Packit 6c4009
#undef	__syscall_error
Packit 6c4009
END (__syscall_error)