Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386/i386 prepend syscall_fancy and syscall_plain w...



details:   https://anonhg.NetBSD.org/src/rev/e6cde51c3a7f
branches:  trunk
changeset: 537624:e6cde51c3a7f
user:      elric <elric%NetBSD.org@localhost>
date:      Thu Oct 03 19:17:01 2002 +0000

description:
prepend syscall_fancy and syscall_plain with mach_ to get this to compile
again.

diffstat:

 sys/arch/i386/i386/mach_syscall.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (39 lines):

diff -r d21e6c8579e9 -r e6cde51c3a7f sys/arch/i386/i386/mach_syscall.c
--- a/sys/arch/i386/i386/mach_syscall.c Thu Oct 03 17:45:20 2002 +0000
+++ b/sys/arch/i386/i386/mach_syscall.c Thu Oct 03 19:17:01 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mach_syscall.c,v 1.3 2002/06/17 16:33:07 christos Exp $        */
+/*     $NetBSD: mach_syscall.c,v 1.4 2002/10/03 19:17:01 elric Exp $   */
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mach_syscall.c,v 1.3 2002/06/17 16:33:07 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mach_syscall.c,v 1.4 2002/10/03 19:17:01 elric Exp $");
 
 #include "opt_syscall_debug.h"
 #include "opt_vm86.h"
@@ -76,17 +76,17 @@
 {
 #ifdef KTRACE
        if (p->p_traceflag & (KTRFAC_SYSCALL | KTRFAC_SYSRET)) {
-               p->p_md.md_syscall = syscall_fancy;
+               p->p_md.md_syscall = mach_syscall_fancy;
                return;
        }
 #endif
 #ifdef SYSTRACE
        if (ISSET(p->p_flag, P_SYSTRACE)) {
-               p->p_md.md_syscall = syscall_fancy;
+               p->p_md.md_syscall = mach_syscall_fancy;
                return;
        } 
 #endif
-       p->p_md.md_syscall = syscall_plain;
+       p->p_md.md_syscall = mach_syscall_plain;
 }
 
 



Home | Main Index | Thread Index | Old Index