aboutsummaryrefslogtreecommitdiff
path: root/kernel/proc/kthread.c
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2024-02-20 18:23:50 +0000
committersotech117 <michael_foiani@brown.edu>2024-02-20 18:23:50 +0000
commitd2b13e08f8d6111b7f7e79a47a124fc47dd9433c (patch)
treeec46a99622c40dae1d45ff516699f949193275a2 /kernel/proc/kthread.c
parent84aae99b4f2f4997db95b9ea6db2a61f582b51ea (diff)
make tests and fix bugs that the tests caught :)
Diffstat (limited to 'kernel/proc/kthread.c')
-rw-r--r--kernel/proc/kthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/proc/kthread.c b/kernel/proc/kthread.c
index 42beb77..46dd627 100644
--- a/kernel/proc/kthread.c
+++ b/kernel/proc/kthread.c
@@ -99,7 +99,7 @@ kthread_t *kthread_create(proc_t *proc, kthread_func_t func, long arg1,
list_init(&new_thread->kt_mutexes);
new_thread->kt_recent_core = 0;
- dbg(DBG_THR, "SUCCESFULLY created a new thread with proc name=%s, id=%d\n", proc->p_name, proc->p_pid);
+ dbg(DBG_THR, "SUCCESFULLY created a new THREAD with proc name=%s, id=%d\n", proc->p_name, proc->p_pid);
return new_thread;
}