mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 16:50:07 +00:00
d030d52da2
* sysdeps/generic/errno.c: New file. * csu/Makefile (aux): New variable, list errno. * sysdeps/unix/sysv/linux/i386/sysdep.S (errno, _errno): Remove defns. * sysdeps/unix/sysv/linux/m68k/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/arm/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/cris/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/hppa/sysdep.c: Likewise. * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/powerpc/sysdep.c: Likewise. * sysdeps/unix/sysv/linux/sparc/sysdep.S: Likewise. * sysdeps/unix/sysv/linux/sh/sysdep.S: Likewise. * sysdeps/unix/alpha/sysdep.S: Likewise. * sysdeps/generic/start.c: Likewise. * sysdeps/unix/start.c: Likewise. * sysdeps/unix/arm/start.c: Likewise. * sysdeps/unix/bsd/ultrix4/mips/start.S: Likewise. * sysdeps/unix/sparc/start.c: Likewise. * sysdeps/unix/sysv/irix4/start.c: Likewise. * sysdeps/unix/sysv/linux/mips/sysdep.S: File removed.
65 lines
1.5 KiB
ArmAsm
65 lines
1.5 KiB
ArmAsm
/* Copyright (C) 1993, 1996, 1998 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Brendan Kehoe (brendan@zen.org).
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <sysdep.h>
|
|
#include <features.h>
|
|
|
|
.text
|
|
.align 2
|
|
|
|
#ifdef _LIBC_REENTRANT
|
|
|
|
.globl __syscall_error
|
|
.ent __syscall_error
|
|
__syscall_error:
|
|
ldgp gp, 0(pv)
|
|
lda sp, -16(sp)
|
|
.frame sp, 16, ra, 0
|
|
stq ra, 0(sp)
|
|
stq v0, 8(sp)
|
|
.mask 0x4000001, -16
|
|
.prologue 1
|
|
|
|
/* Find our per-thread errno address */
|
|
jsr ra, __errno_location
|
|
|
|
/* Store the error value. */
|
|
ldq t0, 8(sp)
|
|
stl t0, 0(v0)
|
|
|
|
/* And kick back a -1. */
|
|
ldi v0, -1
|
|
|
|
ldq ra, 0(sp)
|
|
lda sp, 16(sp)
|
|
ret
|
|
.end __syscall_error
|
|
#else
|
|
|
|
ENTRY(__syscall_error)
|
|
ldgp gp, 0(t12)
|
|
.prologue 1
|
|
|
|
stl v0, errno
|
|
lda v0, -1
|
|
ret
|
|
END(__syscall_error)
|
|
|
|
#endif /* _LIBC_REENTRANT */
|