[rtems commit] monitor: Fix thread priority values

Sebastian Huber sebh at rtems.org
Mon Jan 22 09:40:09 UTC 2018


Module:    rtems
Branch:    master
Commit:    fc438dae305525bf4118ef0d7b7ab5273d747520
Changeset: http://git.rtems.org/rtems/commit/?id=fc438dae305525bf4118ef0d7b7ab5273d747520

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Thu Dec 21 08:47:12 2017 +0100

monitor: Fix thread priority values

---

 cpukit/libmisc/monitor/mon-task.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/cpukit/libmisc/monitor/mon-task.c b/cpukit/libmisc/monitor/mon-task.c
index dbbebf5..26528d7 100644
--- a/cpukit/libmisc/monitor/mon-task.c
+++ b/cpukit/libmisc/monitor/mon-task.c
@@ -8,6 +8,7 @@
 
 #include <rtems.h>
 #include <rtems/monitor.h>
+#include <rtems/score/schedulerimpl.h>
 #include <rtems/score/threadimpl.h>
 #include <rtems/score/threadqimpl.h>
 
@@ -110,7 +111,9 @@ rtems_monitor_task_canonical(
     canonical_task->entry = rtems_thread->Start.Entry;
     canonical_task->stack = rtems_thread->Start.Initial_stack.area;
     canonical_task->stack_size = rtems_thread->Start.Initial_stack.size;
-    canonical_task->priority = _Thread_Get_priority( rtems_thread );
+    canonical_task->priority = SCHEDULER_PRIORITY_UNMAP(
+      _Thread_Get_priority( rtems_thread )
+    );
     canonical_task->events = api->Event.pending_events;
     /*
      * FIXME: make this optionally cpu_time_executed




More information about the vc mailing list