git: 38aac94fd3db - stable/12 - kthread(9): Add a missing space
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 10 Jun 2022 12:45:57 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=38aac94fd3db49ff7017e3d81e7360cd806c0c53
commit 38aac94fd3db49ff7017e3d81e7360cd806c0c53
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 18:15:07 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-10 12:39:23 +0000
kthread(9): Add a missing space
- s/inthe/in the/
(cherry picked from commit a7f5cf2096346076ef16bed9c40b21d3d7a7bd8f)
---
sys/sys/kthread.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/sys/kthread.h b/sys/sys/kthread.h
index e6f1fa41a988..1bb56119786b 100644
--- a/sys/sys/kthread.h
+++ b/sys/sys/kthread.h
@@ -60,7 +60,7 @@ void kproc_start(const void *);
int kproc_suspend(struct proc *, int);
void kproc_suspend_check(struct proc *);
-/* create a thread inthe given process. create the process if needed */
+/* create a thread in the given process. create the process if needed */
int kproc_kthread_add(void (*)(void *), void *,
struct proc **,
struct thread **,