Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Typo fix.



details:   https://anonhg.NetBSD.org/src/rev/5d5691d47ac3
branches:  trunk
changeset: 764282:5d5691d47ac3
user:      jym <jym%NetBSD.org@localhost>
date:      Thu Apr 14 20:19:35 2011 +0000

description:
Typo fix.

diffstat:

 sys/kern/kern_condvar.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 5700e3476f37 -r 5d5691d47ac3 sys/kern/kern_condvar.c
--- a/sys/kern/kern_condvar.c   Thu Apr 14 19:38:21 2011 +0000
+++ b/sys/kern/kern_condvar.c   Thu Apr 14 20:19:35 2011 +0000
@@ -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.
  */



Home | Main Index | Thread Index | Old Index