mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
4770745624
Tue Dec 3 08:38:15 1996 Richard Henderson <rth@tamu.edu> * sysdeps/unix/alpha/sysdep.S: Remove definition of __errno_location. Reformat copyright. * elf/rtld.c (_dl_start): Don't dereference the value returned by elf_machine_got to get _DYNAMIC, instead call new function elf_machine_dynamic. * sysdeps/alpha/dl-machine.h: Permute elf_machine_got to elf_machine_dynamic. Reformat copyright. * sysdeps/i386/dl-machine.h: Likewise. * sysdeps/m68k/dl-machine.h: Likewise. * sysdeps/mips/dl-machine.h: Likewise. * sysdeps/sparc/dl-machine.h: Likewise. * sysdeps/stub/dl-machine.h: Likewise. Tue Oct 15 23:46:00 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * MakeTAGS (sysdep_dirs): Include add-on sysdep directories. Tue Dec 3 02:06:18 1996 Ulrich Drepper <drepper@cygnus.com> * Makerules ($(libdir)/libc.so): Make first line of generated link script contain `/* GNU ld script'. This will be used in ldconfig to check for linker scripts. * sysdeps/mach/hurd/libc-ldscript: Likewise. * sysdeps/mach/hurd/libc_p-ldscript: Likewise. * stdlib/getsubopt.c: Update copyright. Correct typo in comment.
78 lines
1.7 KiB
ArmAsm
78 lines
1.7 KiB
ArmAsm
/* Copyright (C) 1993, 1996 Free Software Foundation, Inc.
|
|
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 Library General Public License as
|
|
published by the Free Software Foundation; either version 2 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. 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>
|
|
|
|
.section .bss
|
|
.globl errno
|
|
.align 2
|
|
errno: .space 4
|
|
#ifdef __ELF__
|
|
.type errno, @object
|
|
.size errno, 4
|
|
#endif
|
|
.globl __errno
|
|
__errno = errno
|
|
|
|
.text
|
|
.align 2
|
|
|
|
#ifdef _LIBC_REENTRANT
|
|
|
|
.globl __syscall_error
|
|
.ent __syscall_error
|
|
__syscall_error:
|
|
ldgp gp, 0(t12)
|
|
lda sp, -16(sp)
|
|
.frame sp, 16, ra, 0
|
|
stq ra, 0(sp)
|
|
stq v0, 8(sp)
|
|
.mask 0x4000001, -16
|
|
.prologue 1
|
|
|
|
/* Store into the "real" variable. */
|
|
stl v0, errno
|
|
|
|
/* Find our per-thread errno address */
|
|
jsr ra, __errno_location
|
|
|
|
/* Store the error value. */
|
|
ldl 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 */
|