aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Horne <mhorne@FreeBSD.org>2023-02-09 15:34:38 +0000
committerMitchell Horne <mhorne@FreeBSD.org>2023-02-09 15:58:06 +0000
commita7a452fedc42d9e260224b7e2cd833df7287319f (patch)
tree0412ac378bdf6e5bc10596b966083d67aa7cef8c
parent25c2dd2f2c6c6144d59d463c95f0471301d6efaa (diff)
downloadsrc-a7a452fedc42d9e260224b7e2cd833df7287319f.tar.gz
src-a7a452fedc42d9e260224b7e2cd833df7287319f.zip
Update comments referencing create_thread()
The equivalent function is now named thread_create(). Mention kthread_add() where it is also relevant. Reviewed by: kib, markj MFC after: 3 days Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D38180
-rw-r--r--sys/kern/kern_kthread.c2
-rw-r--r--sys/sys/proc.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_kthread.c b/sys/kern/kern_kthread.c
index 2eef7798f3d6..782370b1ba77 100644
--- a/sys/kern/kern_kthread.c
+++ b/sys/kern/kern_kthread.c
@@ -296,7 +296,7 @@ kthread_add(void (*func)(void *), void *arg, struct proc *p,
thread_cow_get_proc(newtd, p);
- /* this code almost the same as create_thread() in kern_thr.c */
+ /* This code is similar to thread_create() in kern_thr.c. */
p->p_flag |= P_HADTHREADS;
thread_link(newtd, p);
thread_lock(oldtd);
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 2ad4505405c8..7ba7dbaff666 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -258,7 +258,7 @@ struct thread {
u_char td_base_ithread_pri; /* (t) Base ithread pri */
struct kmsan_td *td_kmsan; /* (k) KMSAN state */
-/* Cleared during fork1() */
+/* Cleared during fork1(), thread_create(), or kthread_add(). */
#define td_startzero td_flags
int td_flags; /* (t) TDF_* flags. */
int td_ast; /* (t) TDA_* indicators */
@@ -324,7 +324,7 @@ struct thread {
u_int td_ucredref; /* (k) references on td_realucred */
#define td_endzero td_sigmask
-/* Copied during fork1() or create_thread(). */
+/* Copied during fork1(), thread_create(), or kthread_add(). */
#define td_startcopy td_endzero
sigset_t td_sigmask; /* (c) Current signal mask. */
u_char td_rqindex; /* (t) Run queue index. */
@@ -344,7 +344,7 @@ struct thread {
#define td_endcopy td_pcb
/*
- * Fields that must be manually set in fork1() or create_thread()
+ * Fields that must be manually set in fork1(), thread_create(), kthread_add(),
* or already have been set in the allocator, constructor, etc.
*/
struct pcb *td_pcb; /* (k) Kernel VA of pcb and kstack. */