diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2004-08-05 13:45:31 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2004-08-05 13:45:31 +0000 |
commit | 5c7e7f55a5b6de77e2219f8a9416588305155812 (patch) | |
tree | 4332a544b89010ed61c72c54cd70c8275b1c005f | |
parent | 2c9b68e921249b9b533ba5a4eec5e642130e1c5c (diff) |
Fix typos. Found by Dries Schellekens
-rw-r--r-- | sys/kern/kern_clock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index 524688b58cb..bed2f2d006e 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_clock.c,v 1.49 2004/08/04 21:49:19 art Exp $ */ +/* $OpenBSD: kern_clock.c,v 1.50 2004/08/05 13:45:30 art Exp $ */ /* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */ /*- @@ -178,8 +178,8 @@ initclocks() * while doing that (signal handling can be heavy). * * hardclock detects that the itimer has expired, and schedules a timeout - * to deliver the signal. This works becuse of the following reasons: - * - The tiemout structures can be in struct pstats because the timers + * to deliver the signal. This works because of the following reasons: + * - The timeout structures can be in struct pstats because the timers * can be only activated on curproc (never swapped). Swapout can * only happen from a kernel thread and softclock runs before threads * are scheduled. |