summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/chg_pri.c
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2017-12-21 11:49:30 -0500
committerGedare Bloom <gedare@rtems.org>2018-03-23 11:33:59 -0400
commit78b867e26dac3266763f275c1f438da912f33a6e (patch)
tree6a6bcac4a0a7f3fa6fd9ab7a9c499ca00ff69f2c /cpukit/itron/src/chg_pri.c
parentsptests: Add spmutex01 to build (diff)
downloadrtems-78b867e26dac3266763f275c1f438da912f33a6e.tar.bz2
score: replace current and real priority with priority node
Encapsulate the current_priority and real_priority fields of the thread control block with a Thread_Priority_node struct. Propagate modifications throughout the tree where the two fields are directly accessed. Updates #3359.
Diffstat (limited to 'cpukit/itron/src/chg_pri.c')
-rw-r--r--cpukit/itron/src/chg_pri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/itron/src/chg_pri.c b/cpukit/itron/src/chg_pri.c
index 0a29128959..3845b96250 100644
--- a/cpukit/itron/src/chg_pri.c
+++ b/cpukit/itron/src/chg_pri.c
@@ -52,7 +52,7 @@ ER chg_pri(
_ITRON_return_errorno( E_PAR );
new_priority = _ITRON_Task_Priority_to_Core( tskpri );
- the_thread->real_priority = new_priority;
+ the_thread->Priority_node.real_priority = new_priority;
/*
* The priority should not be changed until later if priority
@@ -60,7 +60,7 @@ ER chg_pri(
*/
if ( the_thread->resource_count == 0 ||
- the_thread->current_priority > new_priority )
+ the_thread->Priority_node.current_priority > new_priority )
_Thread_Change_priority( the_thread, new_priority, false );
break;