1998-02-26 17:14:15 +00:00
|
|
|
/* Copyright (C) 1993, 1996, 1998 Free Software Foundation, Inc.
|
2001-07-06 04:56:23 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-03-10 01:51:02 +00:00
|
|
|
Contributed by Brendan Kehoe (brendan@zen.org).
|
|
|
|
|
1996-12-04 01:41:27 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
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.
|
1995-03-10 01:51:02 +00:00
|
|
|
|
1996-12-04 01:41:27 +00: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
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-03-10 01:51:02 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
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. */
|
1995-03-10 01:51:02 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
1996-09-07 04:10:03 +00:00
|
|
|
#include <features.h>
|
1995-03-10 01:51:02 +00:00
|
|
|
|
1996-07-18 08:41:25 +00:00
|
|
|
.section .bss
|
|
|
|
.globl errno
|
1996-09-05 02:48:53 +00:00
|
|
|
.align 2
|
1996-07-18 08:41:25 +00:00
|
|
|
errno: .space 4
|
1996-06-19 06:37:47 +00:00
|
|
|
#ifdef __ELF__
|
1996-07-18 08:41:25 +00:00
|
|
|
.type errno, @object
|
|
|
|
.size errno, 4
|
1995-03-10 01:51:02 +00:00
|
|
|
#endif
|
1996-10-02 01:39:48 +00:00
|
|
|
.globl __errno
|
|
|
|
__errno = errno
|
1998-02-26 17:14:15 +00:00
|
|
|
.globl _errno
|
|
|
|
_errno = errno
|
1995-03-10 01:51:02 +00:00
|
|
|
|
1996-07-18 08:41:25 +00:00
|
|
|
.text
|
1996-09-07 04:10:03 +00:00
|
|
|
.align 2
|
|
|
|
|
|
|
|
#ifdef _LIBC_REENTRANT
|
|
|
|
|
|
|
|
.globl __syscall_error
|
|
|
|
.ent __syscall_error
|
|
|
|
__syscall_error:
|
1997-05-31 00:46:24 +00:00
|
|
|
ldgp gp, 0(pv)
|
1996-09-07 04:10:03 +00:00
|
|
|
lda sp, -16(sp)
|
|
|
|
.frame sp, 16, ra, 0
|
|
|
|
stq ra, 0(sp)
|
|
|
|
stq v0, 8(sp)
|
|
|
|
.mask 0x4000001, -16
|
1996-06-19 06:37:47 +00:00
|
|
|
.prologue 1
|
|
|
|
|
1996-10-02 01:39:48 +00:00
|
|
|
/* Find our per-thread errno address */
|
1996-09-07 04:10:03 +00:00
|
|
|
jsr ra, __errno_location
|
|
|
|
|
|
|
|
/* Store the error value. */
|
1997-05-31 00:46:24 +00:00
|
|
|
ldq t0, 8(sp)
|
1996-09-07 04:10:03 +00:00
|
|
|
stl t0, 0(v0)
|
1995-03-10 01:51:02 +00:00
|
|
|
|
1996-09-07 04:10:03 +00:00
|
|
|
/* And kick back a -1. */
|
1996-06-19 06:37:47 +00:00
|
|
|
ldi v0, -1
|
1996-09-07 04:10:03 +00:00
|
|
|
|
|
|
|
ldq ra, 0(sp)
|
|
|
|
lda sp, 16(sp)
|
1995-03-10 01:51:02 +00:00
|
|
|
ret
|
1996-09-07 04:10:03 +00:00
|
|
|
.end __syscall_error
|
|
|
|
#else
|
|
|
|
|
|
|
|
ENTRY(__syscall_error)
|
|
|
|
ldgp gp, 0(t12)
|
|
|
|
.prologue 1
|
|
|
|
|
|
|
|
stl v0, errno
|
|
|
|
lda v0, -1
|
|
|
|
ret
|
1996-06-19 06:37:47 +00:00
|
|
|
END(__syscall_error)
|
1996-09-07 04:10:03 +00:00
|
|
|
|
|
|
|
#endif /* _LIBC_REENTRANT */
|