Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/sparc64/sparc64 compat reorg.
details: https://anonhg.NetBSD.org/src/rev/51b82cd04b82
branches: trunk
changeset: 584321:51b82cd04b82
user: christos <christos%NetBSD.org@localhost>
date: Tue Sep 13 03:23:34 2005 +0000
description:
compat reorg.
diffstat:
sys/arch/sparc64/sparc64/compat_13_machdep.c | 6 ++++--
sys/arch/sparc64/sparc64/compat_16_machdep.c | 6 ++++--
sys/arch/sparc64/sparc64/netbsd32_machdep.c | 8 ++++++--
sys/arch/sparc64/sparc64/sunos32_machdep.c | 7 +++++--
4 files changed, 19 insertions(+), 8 deletions(-)
diffs (111 lines):
diff -r 34e83a9c1ad7 -r 51b82cd04b82 sys/arch/sparc64/sparc64/compat_13_machdep.c
--- a/sys/arch/sparc64/sparc64/compat_13_machdep.c Tue Sep 13 03:23:09 2005 +0000
+++ b/sys/arch/sparc64/sparc64/compat_13_machdep.c Tue Sep 13 03:23:34 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: compat_13_machdep.c,v 1.14 2003/07/15 03:36:08 lukem Exp $ */
+/* $NetBSD: compat_13_machdep.c,v 1.15 2005/09/13 03:23:34 christos Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: compat_13_machdep.c,v 1.14 2003/07/15 03:36:08 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: compat_13_machdep.c,v 1.15 2005/09/13 03:23:34 christos Exp $");
#include "opt_ddb.h"
@@ -55,6 +55,8 @@
#include <sys/syscallargs.h>
#include <sparc64/sparc64/sigdebug.h>
+#include <compat/sys/signal.h>
+#include <compat/sys/signalvar.h>
/*
* System call to cleanup state after a signal
* has been taken. Reset signal mask and
diff -r 34e83a9c1ad7 -r 51b82cd04b82 sys/arch/sparc64/sparc64/compat_16_machdep.c
--- a/sys/arch/sparc64/sparc64/compat_16_machdep.c Tue Sep 13 03:23:09 2005 +0000
+++ b/sys/arch/sparc64/sparc64/compat_16_machdep.c Tue Sep 13 03:23:34 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: compat_16_machdep.c,v 1.5 2005/05/31 00:52:24 christos Exp $ */
+/* $NetBSD: compat_16_machdep.c,v 1.6 2005/09/13 03:23:34 christos Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: compat_16_machdep.c,v 1.5 2005/05/31 00:52:24 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: compat_16_machdep.c,v 1.6 2005/09/13 03:23:34 christos Exp $");
#include "opt_compat_netbsd.h"
@@ -57,6 +57,8 @@
#include <machine/frame.h>
#if defined(COMPAT_16)
+#include <compat/sys/signal.h>
+#include <compat/sys/signalvar.h>
#ifdef DEBUG
/* See sigdebug.h */
diff -r 34e83a9c1ad7 -r 51b82cd04b82 sys/arch/sparc64/sparc64/netbsd32_machdep.c
--- a/sys/arch/sparc64/sparc64/netbsd32_machdep.c Tue Sep 13 03:23:09 2005 +0000
+++ b/sys/arch/sparc64/sparc64/netbsd32_machdep.c Tue Sep 13 03:23:34 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_machdep.c,v 1.51 2005/07/11 15:03:56 martin Exp $ */
+/* $NetBSD: netbsd32_machdep.c,v 1.52 2005/09/13 03:23:34 christos Exp $ */
/*
* Copyright (c) 1998, 2001 Matthew R. Green
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.51 2005/07/11 15:03:56 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.52 2005/09/13 03:23:34 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -70,6 +70,10 @@
#include <compat/netbsd32/netbsd32_syscallargs.h>
#include <compat/netbsd32/netbsd32_exec.h>
+#include <compat/sys/signal.h>
+#include <compat/sys/signalvar.h>
+#include <compat/sys/ucontext.h>
+
#ifndef SUN4U
#define SUN4U /* see .../sparc/include/frame.h for the reason */
#endif
diff -r 34e83a9c1ad7 -r 51b82cd04b82 sys/arch/sparc64/sparc64/sunos32_machdep.c
--- a/sys/arch/sparc64/sparc64/sunos32_machdep.c Tue Sep 13 03:23:09 2005 +0000
+++ b/sys/arch/sparc64/sparc64/sunos32_machdep.c Tue Sep 13 03:23:34 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sunos32_machdep.c,v 1.15 2003/11/09 16:41:53 martin Exp $ */
+/* $NetBSD: sunos32_machdep.c,v 1.16 2005/09/13 03:23:34 christos Exp $ */
/* from: NetBSD: sunos_machdep.c,v 1.14 2001/01/29 01:37:56 mrg Exp */
/*
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos32_machdep.c,v 1.15 2003/11/09 16:41:53 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos32_machdep.c,v 1.16 2005/09/13 03:23:34 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@@ -61,6 +61,9 @@
#include <compat/sunos32/sunos32_syscallargs.h>
#include <compat/sunos32/sunos32_exec.h>
+#include <compat/sys/signal.h>
+#include <compat/sys/signalvar.h>
+
#include <machine/frame.h>
#include <machine/cpu.h>
#include <machine/vuid_event.h>
Home |
Main Index |
Thread Index |
Old Index