diff --git a/sys/arch/mips/include/svr4_machdep.h b/sys/arch/mips/include/svr4_machdep.h index 17745d716cf1..dbc5691c0915 100644 --- a/sys/arch/mips/include/svr4_machdep.h +++ b/sys/arch/mips/include/svr4_machdep.h @@ -1,4 +1,4 @@ -/* $NetBSD: svr4_machdep.h,v 1.2 2002/03/05 14:12:30 simonb Exp $ */ +/* $NetBSD: svr4_machdep.h,v 1.3 2003/01/22 04:32:17 rafal Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -74,8 +74,8 @@ typedef struct svr4_mcontext { } svr4_mcontext_t; #ifdef _KERNEL -int svr4_setmcontext(struct proc *, svr4_mcontext_t *, unsigned long); -void *svr4_getmcontext(struct proc *, svr4_mcontext_t *, unsigned long *); +int svr4_setmcontext(struct lwp *, svr4_mcontext_t *, unsigned long); +void *svr4_getmcontext(struct lwp *, svr4_mcontext_t *, unsigned long *); #endif diff --git a/sys/arch/mips/mips/svr4_machdep.c b/sys/arch/mips/mips/svr4_machdep.c index 8c572c107a0a..e87b14c93071 100644 --- a/sys/arch/mips/mips/svr4_machdep.c +++ b/sys/arch/mips/mips/svr4_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: svr4_machdep.c,v 1.4 2003/01/17 23:36:18 thorpej Exp $ */ +/* $NetBSD: svr4_machdep.c,v 1.5 2003/01/22 04:32:17 rafal Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -75,8 +75,8 @@ * XXX This should be filled later */ int -svr4_setmcontext(p, mc, flags) - struct proc *p; +svr4_setmcontext(l, mc, flags) + struct lwp *l; svr4_mcontext_t *mc; unsigned long flags; { @@ -85,8 +85,8 @@ svr4_setmcontext(p, mc, flags) } void * -svr4_getmcontext(p, mc, flags) - struct proc *p; +svr4_getmcontext(l, mc, flags) + struct lwp *l; svr4_mcontext_t *mc; unsigned long *flags; {