Lines Matching refs:new_priority

88 UINT  _tx_thread_priority_change(TX_THREAD *thread_ptr, UINT new_priority, UINT *old_priority)  in _tx_thread_priority_change()  argument
105 …TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_PRIORITY_CHANGE, thread_ptr, new_priority, thread_ptr -> t… in _tx_thread_priority_change()
116 thread_ptr -> tx_thread_user_priority = new_priority; in _tx_thread_priority_change()
117 thread_ptr -> tx_thread_user_preempt_threshold = new_priority; in _tx_thread_priority_change()
121 if (new_priority < thread_ptr -> tx_thread_inherit_priority) in _tx_thread_priority_change()
125 thread_ptr -> tx_thread_priority = new_priority; in _tx_thread_priority_change()
126 thread_ptr -> tx_thread_preempt_threshold = new_priority; in _tx_thread_priority_change()
163 thread_ptr -> tx_thread_user_priority = new_priority; in _tx_thread_priority_change()
164 thread_ptr -> tx_thread_user_preempt_threshold = new_priority; in _tx_thread_priority_change()
168 if (new_priority < thread_ptr -> tx_thread_inherit_priority) in _tx_thread_priority_change()
172 thread_ptr -> tx_thread_priority = new_priority; in _tx_thread_priority_change()
173 thread_ptr -> tx_thread_preempt_threshold = new_priority; in _tx_thread_priority_change()
209 thread_ptr -> tx_thread_user_priority = new_priority; in _tx_thread_priority_change()
210 thread_ptr -> tx_thread_user_preempt_threshold = new_priority; in _tx_thread_priority_change()
214 if (new_priority < thread_ptr -> tx_thread_inherit_priority) in _tx_thread_priority_change()
218 thread_ptr -> tx_thread_priority = new_priority; in _tx_thread_priority_change()
219 thread_ptr -> tx_thread_preempt_threshold = new_priority; in _tx_thread_priority_change()
265 if (original_priority < new_priority) in _tx_thread_priority_change()