Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/nathanw_sa]: src/sys/arch LWPify sigexit() call.
details: https://anonhg.NetBSD.org/src/rev/b2af5a77e9f9
branches: nathanw_sa
changeset: 506095:b2af5a77e9f9
user: nathanw <nathanw%NetBSD.org@localhost>
date: Fri Aug 02 19:50:22 2002 +0000
description:
LWPify sigexit() call.
diffstat:
sys/arch/alpha/alpha/machdep.c | 6 +++---
sys/arch/arm/arm/sig_machdep.c | 6 +++---
sys/arch/sh3/sh3/sh3_machdep.c | 4 ++--
sys/arch/sparc/sparc/machdep.c | 4 ++--
sys/arch/vax/vax/machdep.c | 4 ++--
5 files changed, 12 insertions(+), 12 deletions(-)
diffs (108 lines):
diff -r 3030ed2af190 -r b2af5a77e9f9 sys/arch/alpha/alpha/machdep.c
--- a/sys/arch/alpha/alpha/machdep.c Fri Aug 02 09:28:29 2002 +0000
+++ b/sys/arch/alpha/alpha/machdep.c Fri Aug 02 19:50:22 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.248.2.18 2002/08/01 02:41:00 nathanw Exp $ */
+/* $NetBSD: machdep.c,v 1.248.2.19 2002/08/02 19:50:22 nathanw Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@@ -75,7 +75,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.248.2.18 2002/08/01 02:41:00 nathanw Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.248.2.19 2002/08/02 19:50:22 nathanw Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1624,7 +1624,7 @@
default:
/* Don't know what trampoline version; kill it. */
- sigexit(p, SIGILL);
+ sigexit(l, SIGILL);
}
frame->tf_regs[FRAME_PC] = (u_int64_t)catcher;
frame->tf_regs[FRAME_A0] = sig;
diff -r 3030ed2af190 -r b2af5a77e9f9 sys/arch/arm/arm/sig_machdep.c
--- a/sys/arch/arm/arm/sig_machdep.c Fri Aug 02 09:28:29 2002 +0000
+++ b/sys/arch/arm/arm/sig_machdep.c Fri Aug 02 19:50:22 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sig_machdep.c,v 1.7.6.10 2002/08/01 02:41:11 nathanw Exp $ */
+/* $NetBSD: sig_machdep.c,v 1.7.6.11 2002/08/02 19:51:10 nathanw Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@@ -44,7 +44,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: sig_machdep.c,v 1.7.6.10 2002/08/01 02:41:11 nathanw Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sig_machdep.c,v 1.7.6.11 2002/08/02 19:51:10 nathanw Exp $");
#include <sys/mount.h> /* XXX only needed by syscallargs.h */
#include <sys/proc.h>
@@ -185,7 +185,7 @@
default:
/* Don't know what trampoline version; kill it. */
- sigexit(p, SIGILL);
+ sigexit(l, SIGILL);
}
/* Remember that we're now on the signal stack. */
diff -r 3030ed2af190 -r b2af5a77e9f9 sys/arch/sh3/sh3/sh3_machdep.c
--- a/sys/arch/sh3/sh3/sh3_machdep.c Fri Aug 02 09:28:29 2002 +0000
+++ b/sys/arch/sh3/sh3/sh3_machdep.c Fri Aug 02 19:50:22 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sh3_machdep.c,v 1.41.6.6 2002/08/01 02:43:19 nathanw Exp $ */
+/* $NetBSD: sh3_machdep.c,v 1.41.6.7 2002/08/02 19:51:36 nathanw Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2002 The NetBSD Foundation, Inc.
@@ -498,7 +498,7 @@
default:
/* Don't know what trampoline version; kill it. */
- sigexit(p, SIGILL);
+ sigexit(l, SIGILL);
}
tf->tf_r4 = sig;
diff -r 3030ed2af190 -r b2af5a77e9f9 sys/arch/sparc/sparc/machdep.c
--- a/sys/arch/sparc/sparc/machdep.c Fri Aug 02 09:28:29 2002 +0000
+++ b/sys/arch/sparc/sparc/machdep.c Fri Aug 02 19:50:22 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.187.4.13 2002/08/01 02:43:29 nathanw Exp $ */
+/* $NetBSD: machdep.c,v 1.187.4.14 2002/08/02 19:52:02 nathanw Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -618,7 +618,7 @@
default:
/* Don't know what trampoline version; kill it. */
- sigexit(p, SIGILL);
+ sigexit(l, SIGILL);
}
tf->tf_global[1] = (int)catcher;
diff -r 3030ed2af190 -r b2af5a77e9f9 sys/arch/vax/vax/machdep.c
--- a/sys/arch/vax/vax/machdep.c Fri Aug 02 09:28:29 2002 +0000
+++ b/sys/arch/vax/vax/machdep.c Fri Aug 02 19:50:22 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.120.4.8 2002/08/01 02:44:00 nathanw Exp $ */
+/* $NetBSD: machdep.c,v 1.120.4.9 2002/08/02 19:52:24 nathanw Exp $ */
/*
* Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
@@ -488,7 +488,7 @@
default:
/* Don't know what trampoline version; kill it. */
- sigexit(p, SIGILL);
+ sigexit(l, SIGILL);
}
syscf->psl = PSL_U | PSL_PREVU;
syscf->ap = cursp;
Home |
Main Index |
Thread Index |
Old Index