* sysdeps/unix/mips/sysdep.h: Use __syscall_error.

	* sysdeps/unix/mips/sysdep.S: Rewrite, don't declare errno here.
	Patches by Ralf Baechle <ralf@uni-koblenz.de>

1999-08-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
This commit is contained in:
Ulrich Drepper 1999-08-24 21:00:04 +00:00
parent 08c70af087
commit db72c1e46f
3 changed files with 66 additions and 24 deletions

View File

@ -1,3 +1,10 @@
1999-08-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/mips/sysdep.h: Use __syscall_error.
* sysdeps/unix/mips/sysdep.S: Rewrite, don't declare errno here.
Patches by Ralf Baechle <ralf@uni-koblenz.de>
1999-08-24 Andreas Jaeger <aj@arthur.rhein-neckar.de> 1999-08-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/net/if_arp.h: Add new constants from * sysdeps/unix/sysv/linux/net/if_arp.h: Add new constants from

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1992, 1993, 1994, 1997, 1998 Free Software Foundation, Inc. /* Copyright (C) 1992,93,94,97,98,99 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Brendan Kehoe (brendan@zen.org). Contributed by Brendan Kehoe (brendan@zen.org).
@ -21,21 +21,11 @@
#define _ERRNO_H #define _ERRNO_H
#include <bits/errno.h> #include <bits/errno.h>
.bss #ifdef _LIBC_REENTRANT
.globl errno
#ifdef __ELF__
.type errno, @object
#endif
.size errno, 4
errno:
.space 4
weak_alias (errno, _errno)
.set noreorder
ENTRY(__syscall_error) ENTRY(__syscall_error)
#ifdef PIC #ifdef PIC
.set noreorder
.set noat .set noat
move $1, $31 move $1, $31
bltzal $0, 0f bltzal $0, 0f
@ -43,7 +33,15 @@ ENTRY(__syscall_error)
0: .cpload $31 0: .cpload $31
move $31, $1 move $31, $1
.set at .set at
.set reorder
#endif #endif
subu sp, 32
#ifdef __PIC__
.cprestore 16
#endif
sw v0, 20(sp)
sw ra, 24(sp)
#if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
/* We translate the system's EWOULDBLOCK error into EAGAIN. /* We translate the system's EWOULDBLOCK error into EAGAIN.
The GNU C library always defines EWOULDBLOCK==EAGAIN. The GNU C library always defines EWOULDBLOCK==EAGAIN.
@ -52,15 +50,52 @@ ENTRY(__syscall_error)
nop nop
li v0, EAGAIN li v0, EAGAIN
skip: skip:
#endif
/* Store it in the "real" variable ... */
sw v0, errno
/* Find our per-thread errno address */
jal __errno_location
/* Store the error value. */
lw t0, 20(sp)
sw t0, 0(v0)
/* And just kick back a -1. */
lw ra, 24(sp)
addiu sp, 32
li v0, -1
j ra
END(__syscall_error)
#else /* _LIBC_REENTRANT */
ENTRY(__syscall_error)
#ifdef __PIC__
.set noreorder
.set noat
move $1, $31
bltzal $0, 0f
nop
0: .cpload $31
move $31, $1
.set at
.set reorder
#endif
#if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
/* We translate the system's EWOULDBLOCK error into EAGAIN.
The GNU C library always defines EWOULDBLOCK==EAGAIN.
EWOULDBLOCK_sys is the original number. */
bne v0, EWOULDBLOCK_sys, skip
li v0, EAGAIN
skip:
#endif #endif
/* Store it in errno... */ /* Store it in errno... */
sw v0, errno sw v0, errno
/* And just kick back a -1. */ /* And just kick back a -1. */
j ra
li v0, -1 li v0, -1
j ra
END(__syscall_error) END(__syscall_error)
#endif /* _LIBC_REENTRANT */
/* We provide this alias for compatilility with other Unices
like IRIX 5 */
weak_alias (__syscall_error, syscall_error)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc. /* Copyright (C) 1992, 1995, 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Brendan Kehoe (brendan@zen.org). Contributed by Brendan Kehoe (brendan@zen.org).
@ -29,13 +29,13 @@
.ent name,0; \ .ent name,0; \
name##: name##:
/* Note that while it's better structurally, going back to call syscall_error /* Note that while it's better structurally, going back to call __syscall_error
can make things confusing if you're debugging---it looks like it's jumping can make things confusing if you're debugging---it looks like it's jumping
backwards into the previous fn. */ backwards into the previous fn. */
#ifdef __PIC__ #ifdef PIC
#define PSEUDO(name, syscall_name, args) \ #define PSEUDO(name, syscall_name, args) \
.align 2; \ .align 2; \
99: la t9,syscall_error; \ 99: la t9,__syscall_error; \
jr t9; \ jr t9; \
ENTRY(name) \ ENTRY(name) \
.set noreorder; \ .set noreorder; \
@ -49,7 +49,7 @@ syse1:
#define PSEUDO(name, syscall_name, args) \ #define PSEUDO(name, syscall_name, args) \
.set noreorder; \ .set noreorder; \
.align 2; \ .align 2; \
99: j syscall_error; \ 99: j __syscall_error; \
ENTRY(name) \ ENTRY(name) \
.set noreorder; \ .set noreorder; \
li v0, SYS_##syscall_name; \ li v0, SYS_##syscall_name; \