Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/nathanw_sa]: src/sys/arch/i386/i386 npxsave_proc() -> npxsave_lwp().
details: https://anonhg.NetBSD.org/src/rev/69c9cb16776e
branches: nathanw_sa
changeset: 506365:69c9cb16776e
user: nathanw <nathanw%NetBSD.org@localhost>
date: Fri Oct 18 04:12:19 2002 +0000
description:
npxsave_proc() -> npxsave_lwp().
diffstat:
sys/arch/i386/i386/process_machdep.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (54 lines):
diff -r ea438b46b82c -r 69c9cb16776e sys/arch/i386/i386/process_machdep.c
--- a/sys/arch/i386/i386/process_machdep.c Fri Oct 18 04:11:57 2002 +0000
+++ b/sys/arch/i386/i386/process_machdep.c Fri Oct 18 04:12:19 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: process_machdep.c,v 1.32.2.11 2002/10/18 02:37:49 nathanw Exp $ */
+/* $NetBSD: process_machdep.c,v 1.32.2.12 2002/10/18 04:12:19 nathanw Exp $ */
/*-
* Copyright (c) 1998, 2000, 2001 The NetBSD Foundation, Inc.
@@ -59,7 +59,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: process_machdep.c,v 1.32.2.11 2002/10/18 02:37:49 nathanw Exp $");
+__KERNEL_RCSID(0, "$NetBSD: process_machdep.c,v 1.32.2.12 2002/10/18 04:12:19 nathanw Exp $");
#include "opt_vm86.h"
#include "npx.h"
@@ -254,7 +254,7 @@
if (l->l_md.md_flags & MDP_USEDFPU) {
#if NNPX > 0
- npxsave_proc(l, 1);
+ npxsave_lwp(l, 1);
#endif
} else {
/*
@@ -356,7 +356,7 @@
if (l->l_md.md_flags & MDP_USEDFPU) {
#if NNPX > 0
- npxsave_proc(l, 0);
+ npxsave_lwp(l, 0);
#endif
} else {
l->l_md.md_flags |= MDP_USEDFPU;
@@ -408,7 +408,7 @@
if (l->l_md.md_flags & MDP_USEDFPU) {
#if NNPX > 0
if (l->l_addr->u_pcb.pcb_fpcpu != NULL)
- npxsave_proc(l, 1);
+ npxsave_lwp(l, 1);
#endif
} else {
/*
@@ -445,7 +445,7 @@
#if NNPX > 0
/* If we were using the FPU, drop it. */
if (l->l_addr->u_pcb.pcb_fpcpu != NULL)
- npxsave_proc(l, 0);
+ npxsave_lwp(l, 0);
#endif
} else {
l->l_md.md_flags |= MDP_USEDFPU;
Home |
Main Index |
Thread Index |
Old Index