Module Name:    src
Committed By:   skrll
Date:           Thu Feb 18 20:58:23 UTC 2010

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

Log Message:
Fix comment(s).

OK'ed by rmind


To generate a diff of this commit:
cvs rdiff -u -r1.274 -r1.275 src/sys/kern/kern_synch.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_synch.c
diff -u src/sys/kern/kern_synch.c:1.274 src/sys/kern/kern_synch.c:1.275
--- src/sys/kern/kern_synch.c:1.274	Wed Dec 30 23:54:30 2009
+++ src/sys/kern/kern_synch.c	Thu Feb 18 20:58:23 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_synch.c,v 1.274 2009/12/30 23:54:30 rmind Exp $	*/
+/*	$NetBSD: kern_synch.c,v 1.275 2010/02/18 20:58:23 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2004, 2006, 2007, 2008, 2009
@@ -69,7 +69,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.274 2009/12/30 23:54:30 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.275 2010/02/18 20:58:23 skrll Exp $");
 
 #include "opt_kstack.h"
 #include "opt_perfctrs.h"
@@ -752,7 +752,7 @@
 			pmap_deactivate(l);
 
 		/*
-		 * We may need to spin-wait for if 'newl' is still
+		 * We may need to spin-wait if 'newl' is still
 		 * context switching on another CPU.
 		 */
 		if (__predict_false(newl->l_ctxswtch != 0)) {
@@ -893,7 +893,7 @@
 		l->l_lwpctl->lc_curcpu = LWPCTL_CPU_EXITED;
 
 	/*
-	 * We may need to spin-wait for if 'newl' is still
+	 * We may need to spin-wait if 'newl' is still
 	 * context switching on another CPU.
 	 */
 	if (__predict_false(newl->l_ctxswtch != 0)) {

Reply via email to