Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/linux/arch/i386 Fix syscall_vm86 argument:



details:   https://anonhg.NetBSD.org/src/rev/f7682e2c9dba
branches:  trunk
changeset: 550774:f7682e2c9dba
user:      hannken <hannken%NetBSD.org@localhost>
date:      Thu Aug 21 08:36:56 2003 +0000

description:
Fix syscall_vm86 argument:
        struct trapframe -> struct trapframe *

diffstat:

 sys/compat/linux/arch/i386/linux_machdep.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c7f14736465f -r f7682e2c9dba sys/compat/linux/arch/i386/linux_machdep.c
--- a/sys/compat/linux/arch/i386/linux_machdep.c        Thu Aug 21 04:30:25 2003 +0000
+++ b/sys/compat/linux/arch/i386/linux_machdep.c        Thu Aug 21 08:36:56 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux_machdep.c,v 1.93 2003/08/09 14:16:44 christos Exp $      */
+/*     $NetBSD: linux_machdep.c,v 1.94 2003/08/21 08:36:56 hannken Exp $       */
 
 /*-
  * Copyright (c) 1995, 2000 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.93 2003/08/09 14:16:44 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.94 2003/08/21 08:36:56 hannken Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_vm86.h"
@@ -496,7 +496,7 @@
        DPRINTF(("sigreturn enter esp=%x eip=%x\n", tf->tf_esp, tf->tf_eip));
 #ifdef VM86
        if (scp->sc_eflags & PSL_VM) {
-               void syscall_vm86 __P((struct trapframe));
+               void syscall_vm86 __P((struct trapframe *));
 
                tf->tf_vm86_gs = scp->sc_gs;
                tf->tf_vm86_fs = scp->sc_fs;



Home | Main Index | Thread Index | Old Index