glibc/sysdeps/unix/alpha/sysdep.S

78 lines
1.7 KiB
ArmAsm
Raw Normal View History

1996-09-05 04:48:53 +02:00
/* Copyright (C) 1993, 1996 Free Software Foundation, Inc.
1995-03-10 02:51:02 +01:00
Contributed by Brendan Kehoe (brendan@zen.org).
1996-12-04 02:41:27 +01:00
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.
1995-03-10 02:51:02 +01:00
1996-12-04 02:41:27 +01:00
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.
1995-03-10 02:51:02 +01:00
1996-12-04 02:41:27 +01:00
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. */
1995-03-10 02:51:02 +01:00
#include <sysdep.h>
1996-09-07 06:10:03 +02:00
#include <features.h>
1995-03-10 02:51:02 +01:00
.section .bss
.globl errno
1996-09-05 04:48:53 +02:00
.align 2
errno: .space 4
#ifdef __ELF__
.type errno, @object
.size errno, 4
1995-03-10 02:51:02 +01:00
#endif
1996-10-02 03:39:48 +02:00
.globl __errno
__errno = errno
1995-03-10 02:51:02 +01:00
.text
1996-09-07 06:10:03 +02:00
.align 2
#ifdef _LIBC_REENTRANT
.globl __syscall_error
.ent __syscall_error
__syscall_error:
ldgp gp, 0(t12)
1996-09-07 06:10:03 +02:00
lda sp, -16(sp)
.frame sp, 16, ra, 0
stq ra, 0(sp)
stq v0, 8(sp)
.mask 0x4000001, -16
.prologue 1
1996-10-02 03:39:48 +02:00
/* Store into the "real" variable. */
stl v0, errno
/* Find our per-thread errno address */
1996-09-07 06:10:03 +02:00
jsr ra, __errno_location
/* Store the error value. */
ldl t0, 8(sp)
stl t0, 0(v0)
1995-03-10 02:51:02 +01:00
1996-09-07 06:10:03 +02:00
/* And kick back a -1. */
ldi v0, -1
1996-09-07 06:10:03 +02:00
ldq ra, 0(sp)
lda sp, 16(sp)
1995-03-10 02:51:02 +01:00
ret
1996-09-07 06:10:03 +02:00
.end __syscall_error
#else
ENTRY(__syscall_error)
ldgp gp, 0(t12)
.prologue 1
stl v0, errno
lda v0, -1
ret
END(__syscall_error)
1996-09-07 06:10:03 +02:00
#endif /* _LIBC_REENTRANT */