summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-08-03 14:36:37 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-08-03 14:36:37 +0000
commit9faac510caaaf18381120cf7fea1fe2fe5353ce8 (patch)
tree66aaa4fe509435abba7d76fe8508b157c7d0b407
parent53a6a8b194a01ed30f00867de275afc7e0568b70 (diff)
s/principal/priciple/; from netbsd
-rw-r--r--sys/kern/kern_synch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index 30038529279..8e9570618fc 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_synch.c,v 1.27 2000/07/06 07:00:04 art Exp $ */
+/* $OpenBSD: kern_synch.c,v 1.28 2000/08/03 14:36:36 mickey Exp $ */
/* $NetBSD: kern_synch.c,v 1.37 1996/04/22 01:38:37 christos Exp $ */
/*-
@@ -815,7 +815,7 @@ resetpriority(p)
* queue will not change. The cpu usage estimator ramps up quite quickly
* when the process is running (linearly), and decays away exponentially, at
* a rate which is proportionally slower when the system is busy. The basic
- * principal is that the system will 90% forget that the process used a lot
+ * principle is that the system will 90% forget that the process used a lot
* of CPU time in 5 * loadav seconds. This causes the system to favor
* processes which haven't run much recently, and to round-robin among other
* processes.