Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/mips scdebug_call() takes an LWP and not a pro...



details:   https://anonhg.NetBSD.org/src/rev/7be56951e900
branches:  trunk
changeset: 547570:7be56951e900
user:      simonb <simonb%NetBSD.org@localhost>
date:      Fri May 23 12:58:18 2003 +0000

description:
scdebug_call() takes an LWP and not a proc as it's first argument.

diffstat:

 sys/arch/mips/mips/syscall.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 9b80e79a6bd3 -r 7be56951e900 sys/arch/mips/mips/syscall.c
--- a/sys/arch/mips/mips/syscall.c      Fri May 23 10:14:03 2003 +0000
+++ b/sys/arch/mips/mips/syscall.c      Fri May 23 12:58:18 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: syscall.c,v 1.15 2003/01/17 23:36:18 thorpej Exp $     */
+/*     $NetBSD: syscall.c,v 1.16 2003/05/23 12:58:18 simonb Exp $      */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -80,7 +80,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.15 2003/01/17 23:36:18 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.16 2003/05/23 12:58:18 simonb Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ktrace.h"
@@ -259,7 +259,7 @@
        }
 
 #ifdef SYSCALL_DEBUG
-       scdebug_call(p, code, (register_t *)args);
+       scdebug_call(l, code, (register_t *)args);
 #endif
 
 #if !defined(_MIPS_BSD_API) || _MIPS_BSD_API == _MIPS_BSD_API_LP32



Home | Main Index | Thread Index | Old Index