diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-06-23 13:46:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-06-23 13:46:06 +0000 |
commit | 93464a5bb604a1cdd00a71845d69e3c6ab772286 (patch) | |
tree | 0e6519039dacc55faeb70bb6a620af7ac2dcebbc /sys/arch/amd64 | |
parent | 75d87370a56e6c69b9ad8e0c6a0d3c5c53778418 (diff) |
consistantly count context switches on exit; miod@ ok
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/vm_machdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/vm_machdep.c b/sys/arch/amd64/amd64/vm_machdep.c index 70c0291cf11..9f5e0b4c19f 100644 --- a/sys/arch/amd64/amd64/vm_machdep.c +++ b/sys/arch/amd64/amd64/vm_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_machdep.c,v 1.6 2005/12/13 00:18:19 jsg Exp $ */ +/* $OpenBSD: vm_machdep.c,v 1.7 2006/06/23 13:46:05 mickey Exp $ */ /* $NetBSD: vm_machdep.c,v 1.1 2003/04/26 18:39:33 fvdl Exp $ */ /*- @@ -190,7 +190,6 @@ cpu_exit(struct proc *p) * pmap_destroy(). */ - uvmexp.swtch++; switch_exit(p, exit2); } |