summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-20 10:51:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-20 10:51:09 +0000
commit0b9eff8105b4d1b4eadc8fd665d40dd6c8f6f36a (patch)
tree36598cd409a32a784477983733612a9ff52634f1
parent484d1065bcccebf78c33607c880632b6ef0d0370 (diff)
tick v_swpin & v_swpout
-rw-r--r--sys/vm/vm_glue.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index 83d253b6353..51c79121296 100644
--- a/sys/vm/vm_glue.c
+++ b/sys/vm/vm_glue.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: vm_glue.c,v 1.16 1996/05/28 12:16:32 deraadt Exp $ */
-/* $NetBSD: vm_glue.c,v 1.55 1996/05/19 10:00:38 ragge Exp $ */
+/* $OpenBSD: vm_glue.c,v 1.17 1996/06/20 10:51:08 deraadt Exp $ */
+/* $NetBSD: vm_glue.c,v 1.55.4.1 1996/06/13 17:25:45 cgd Exp $ */
/*
* Copyright (c) 1991, 1993
@@ -357,6 +357,7 @@ swapin(p)
p->p_flag |= P_INMEM;
splx(s);
p->p_swtime = 0;
+ ++cnt.v_swpin;
}
/*
@@ -545,6 +546,7 @@ swapout(p)
remrq(p);
splx(s);
p->p_swtime = 0;
+ ++cnt.v_swpout;
}
/*