svn commit: r204088 - head/sys/kern

Attilio Rao attilio at FreeBSD.org
Fri Feb 19 15:03:56 UTC 2010


Author: attilio
Date: Fri Feb 19 15:03:55 2010
New Revision: 204088
URL: http://svn.freebsd.org/changeset/base/204088

Log:
  Fix the grammar.
  
  Submitted by:	Brandon Gooch <bgooch at se dot edu>

Modified:
  head/sys/kern/kern_kthread.c

Modified: head/sys/kern/kern_kthread.c
==============================================================================
--- head/sys/kern/kern_kthread.c	Fri Feb 19 14:59:41 2010	(r204087)
+++ head/sys/kern/kern_kthread.c	Fri Feb 19 15:03:55 2010	(r204088)
@@ -339,9 +339,9 @@ kthread_suspend(struct thread *td, int t
 	p = td->td_proc;
 
 	/*
-	 * td_pflags should not be ready by any other thread different by
+	 * td_pflags should not be read by any thread other than
 	 * curthread, but as long as this flag is invariant during the
-	 * thread lifetime, it is ok to check for it now.
+	 * thread's lifetime, it is OK to check its state.
 	 */
 	if ((td->td_pflags & TDP_KTHREAD) == 0)
 		return (EINVAL);
@@ -370,9 +370,9 @@ kthread_resume(struct thread *td)
 	p = td->td_proc;
 
 	/*
-	 * td_pflags should not be ready by any other thread different by
+	 * td_pflags should not be read by any thread other than
 	 * curthread, but as long as this flag is invariant during the
-	 * thread lifetime, it is ok to check for it now.
+	 * thread's lifetime, it is OK to check its state.
 	 */
 	if ((td->td_pflags & TDP_KTHREAD) == 0)
 		return (EINVAL);


More information about the svn-src-head mailing list