aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_kthread.c
diff options
context:
space:
mode:
authorAttilio Rao <attilio@FreeBSD.org>2010-02-19 15:03:55 +0000
committerAttilio Rao <attilio@FreeBSD.org>2010-02-19 15:03:55 +0000
commit3aadd65dbbc1fd5824c6c8f8efdd6762539758ea (patch)
treeae3b7de4f33f0a02ba10de34b2ff387b5b37154e /sys/kern/kern_kthread.c
parentdd55eec79151125fcc2f0e37f1751ba0655689f6 (diff)
downloadsrc-3aadd65dbbc1fd5824c6c8f8efdd6762539758ea.tar.gz
src-3aadd65dbbc1fd5824c6c8f8efdd6762539758ea.zip
Fix the grammar.
Submitted by: Brandon Gooch <bgooch at se dot edu>
Notes
Notes: svn path=/head/; revision=204088
Diffstat (limited to 'sys/kern/kern_kthread.c')
-rw-r--r--sys/kern/kern_kthread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_kthread.c b/sys/kern/kern_kthread.c
index 86a37e6cc595..5b483769c55c 100644
--- a/sys/kern/kern_kthread.c
+++ b/sys/kern/kern_kthread.c
@@ -339,9 +339,9 @@ kthread_suspend(struct thread *td, int timo)
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);