summaryrefslogtreecommitdiff
path: root/cpukit/libmisc/cpuuse/cpuusagetop.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/cpuuse/cpuusagetop.c')
-rw-r--r--cpukit/libmisc/cpuuse/cpuusagetop.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/libmisc/cpuuse/cpuusagetop.c b/cpukit/libmisc/cpuuse/cpuusagetop.c
index aa2b74c160..ccf32de4d7 100644
--- a/cpukit/libmisc/cpuuse/cpuusagetop.c
+++ b/cpukit/libmisc/cpuuse/cpuusagetop.c
@@ -264,8 +264,12 @@ task_usage(Thread_Control* thread, void* arg)
if (thread->real_priority > data->tasks[j]->real_priority)
continue;
case RTEMS_TOP_SORT_CURRENT_PRI:
- if (thread->current_priority > data->tasks[j]->current_priority)
+ if (
+ _Thread_Get_priority( thread )
+ > _Thread_Get_priority( data->tasks[j] )
+ ) {
continue;
+ }
case RTEMS_TOP_SORT_ID:
if (thread->Object.id < data->tasks[j]->Object.id)
continue;
@@ -478,7 +482,7 @@ rtems_cpuusage_top_thread (rtems_task_argument arg)
thread->Object.id,
name,
thread->real_priority,
- thread->current_priority);
+ _Thread_Get_priority(thread));
usage = data->usage[i];
current_usage = data->current_usage[i];