Module Name:    src
Committed By:   jym
Date:           Thu Apr 14 20:19:36 UTC 2011

Modified Files:
        src/sys/kern: kern_condvar.c

Log Message:
Typo fix.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/kern/kern_condvar.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/kern_condvar.c
diff -u src/sys/kern/kern_condvar.c:1.28 src/sys/kern/kern_condvar.c:1.29
--- src/sys/kern/kern_condvar.c:1.28	Sat Dec  5 22:38:19 2009
+++ src/sys/kern/kern_condvar.c	Thu Apr 14 20:19:35 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_condvar.c,v 1.28 2009/12/05 22:38:19 pooka Exp $	*/
+/*	$NetBSD: kern_condvar.c,v 1.29 2011/04/14 20:19:35 jym Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_condvar.c,v 1.28 2009/12/05 22:38:19 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_condvar.c,v 1.29 2011/04/14 20:19:35 jym Exp $");
 
 #include <sys/param.h>
 #include <sys/proc.h>
@@ -224,7 +224,7 @@
  *
  *	Wait on a condition variable until a awoken or a signal is received. 
  *	Will also return early if the process is exiting.  Returns zero if
- *	awoken normallly, ERESTART if a signal was received and the system
+ *	awoken normally, ERESTART if a signal was received and the system
  *	call is restartable, or EINTR otherwise.
  */
 int
@@ -265,7 +265,7 @@
  *
  *	Wait on a condition variable until a timeout expires, awoken or a
  *	signal is received.  Will also return early if the process is
- *	exiting.  Returns zero if awoken normallly, EWOULDBLOCK if the
+ *	exiting.  Returns zero if awoken normally, EWOULDBLOCK if the
  *	timeout expires, ERESTART if a signal was received and the system
  *	call is restartable, or EINTR otherwise.
  */

Reply via email to