Source-Changes-HG archive

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

[src/trunk]: src/sys/compat Add a sunos_machdep include file to deal with MD ...



details:   https://anonhg.NetBSD.org/src/rev/48b815c1dd0c
branches:  trunk
changeset: 582916:48b815c1dd0c
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Jul 11 13:14:49 2005 +0000

description:
Add a sunos_machdep include file to deal with MD implementations of
sunos_syscall_intern.

diffstat:

 sys/compat/sunos/sunos_exec.c     |  6 ++++--
 sys/compat/sunos32/sunos32_exec.c |  8 +++++---
 2 files changed, 9 insertions(+), 5 deletions(-)

diffs (63 lines):

diff -r 36579d1eedfb -r 48b815c1dd0c sys/compat/sunos/sunos_exec.c
--- a/sys/compat/sunos/sunos_exec.c     Mon Jul 11 13:13:56 2005 +0000
+++ b/sys/compat/sunos/sunos_exec.c     Mon Jul 11 13:14:49 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sunos_exec.c,v 1.48 2005/07/10 16:45:33 christos Exp $ */
+/*     $NetBSD: sunos_exec.c,v 1.49 2005/07/11 13:14:49 christos Exp $ */
 
 /*
  * Copyright (c) 1993 Theo de Raadt
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_exec.c,v 1.48 2005/07/10 16:45:33 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_exec.c,v 1.49 2005/07/11 13:14:49 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_syscall_debug.h"
@@ -48,6 +48,8 @@
 #include <compat/sunos/sunos_exec.h>
 #include <compat/sunos/sunos_syscall.h>
 
+#include <machine/sunos_machdep.h>
+
 extern int nsunos_sysent;
 extern struct sysent sunos_sysent[];
 #ifdef SYSCALL_DEBUG
diff -r 36579d1eedfb -r 48b815c1dd0c sys/compat/sunos32/sunos32_exec.c
--- a/sys/compat/sunos32/sunos32_exec.c Mon Jul 11 13:13:56 2005 +0000
+++ b/sys/compat/sunos32/sunos32_exec.c Mon Jul 11 13:14:49 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sunos32_exec.c,v 1.22 2005/07/10 04:23:30 christos Exp $        */
+/*     $NetBSD: sunos32_exec.c,v 1.23 2005/07/11 13:14:49 christos Exp $        */
 
 /*
  * Copyright (c) 2001 Matthew R. Green
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos32_exec.c,v 1.22 2005/07/10 04:23:30 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos32_exec.c,v 1.23 2005/07/11 13:14:49 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_syscall_debug.h"
@@ -45,6 +45,8 @@
 #include <compat/sunos32/sunos32_syscall.h>
 #include <compat/sunos32/sunos32_exec.h>
 
+#include <machine/sunos_machdep.h>
+
 extern int nsunos32_sysent;
 extern struct sysent sunos32_sysent[];
 #ifdef SYSCALL_DEBUG
@@ -86,7 +88,7 @@
        NULL,
        NULL,
 #ifdef __HAVE_SYSCALL_INTERN
-       syscall_intern,
+       sunos_syscall_intern,
 #else
        syscall,
 #endif



Home | Main Index | Thread Index | Old Index