summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2000-08-03 14:36:36 +0000
committermickey <mickey@openbsd.org>2000-08-03 14:36:36 +0000
commitfc36d9a6f7d5819f7e4d4df5cb1e02a8e53845b0 (patch)
treee33017f894575893f5698129b3a6a7fbee0899eb
parentDon't print out the name of the controller twice. (diff)
downloadwireguard-openbsd-fc36d9a6f7d5819f7e4d4df5cb1e02a8e53845b0.tar.xz
wireguard-openbsd-fc36d9a6f7d5819f7e4d4df5cb1e02a8e53845b0.zip
s/principal/priciple/; from netbsd
Diffstat (limited to '')
-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.