summaryrefslogtreecommitdiff
path: root/kern/task.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-02-13 23:05:25 +0100
committerRichard Braun <rbraun@sceen.net>2017-02-13 23:05:25 +0100
commit30e1c42921229143c7db7f80b9677c3fb24f36b1 (patch)
tree4b371cb3a0e3ebba35b096e9cf857341f236203b /kern/task.c
parenta26658f7ef6d92a03720fbf4d84a8e414e24dbe0 (diff)
kern/thread: minor change about scheduling class string representation
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 f4586eed..afc2407a 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -150,7 +150,7 @@ task_info(struct task *task)
thread_state_to_chr(thread),
thread_wchan_desc(thread),
(unsigned long)thread_wchan_addr(thread),
- thread_schedclass_to_str(thread),
+ thread_sched_class_to_str(thread_sched_class(thread)),
thread_priority(thread),
thread->name);
}