Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/lib/libc/arch/i386/sys Pull up revision 1.12 (requested...



details:   https://anonhg.NetBSD.org/src/rev/de91a8b21a8c
branches:  netbsd-1-4
changeset: 470557:de91a8b21a8c
user:      he <he%NetBSD.org@localhost>
date:      Fri May 05 13:17:46 2000 +0000

description:
Pull up revision 1.12 (requested by assar):
  Repair syscall stubs which were not adapted when the cerror
  interface was changed.

diffstat:

 lib/libc/arch/i386/sys/sigsuspend.S |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 54f1a6cb2ec6 -r de91a8b21a8c lib/libc/arch/i386/sys/sigsuspend.S
--- a/lib/libc/arch/i386/sys/sigsuspend.S       Fri May 05 13:17:12 2000 +0000
+++ b/lib/libc/arch/i386/sys/sigsuspend.S       Fri May 05 13:17:46 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sigsuspend.S,v 1.11 1999/02/08 18:56:48 christos Exp $ */
+/*     $NetBSD: sigsuspend.S,v 1.11.2.1 2000/05/05 13:17:46 he Exp $   */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -40,7 +40,7 @@
 
 #include <machine/asm.h>
 #if defined(SYSLIBC_SCCS) && !defined(lint)
-       RCSID("$NetBSD: sigsuspend.S,v 1.11 1999/02/08 18:56:48 christos Exp $")
+       RCSID("$NetBSD: sigsuspend.S,v 1.11.2.1 2000/05/05 13:17:46 he Exp $")
 #endif /* SYSLIBC_SCCS and not lint */
 
 #include "SYS.h"
@@ -60,7 +60,9 @@
 err:
 #ifdef PIC
        PIC_PROLOGUE
-       jmp     PIC_PLT(CERROR)
+       mov     PIC_GOT(CERROR), %ecx
+       PIC_EPILOGUE
+       jmp     %ecx
 #else
        jmp     CERROR
 #endif



Home | Main Index | Thread Index | Old Index