summaryrefslogtreecommitdiff
path: root/kern/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/task.c')
-rw-r--r--kern/task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/task.c b/kern/task.c
index 51559434..6909cb32 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -135,7 +135,7 @@ task_info(struct task *task)
printk("task: name: %s, threads:\n", task->name);
list_for_each_entry(&task->threads, thread, task_node)
- printk("task: %s: %s\n", task->name, thread->name);
+ printk("task: %s: %p (%s)\n", task->name, thread, thread->name);
spinlock_unlock(&task->lock);
}