Lines Matching refs:new_priority

89 UINT  _tx_thread_priority_change(TX_THREAD *thread_ptr, UINT new_priority, UINT *old_priority)  in _tx_thread_priority_change()  argument
106 …TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_PRIORITY_CHANGE, thread_ptr, new_priority, thread_ptr -> t… in _tx_thread_priority_change()
117 thread_ptr -> tx_thread_user_priority = new_priority; in _tx_thread_priority_change()
118 thread_ptr -> tx_thread_user_preempt_threshold = new_priority; in _tx_thread_priority_change()
122 if (new_priority < thread_ptr -> tx_thread_inherit_priority) in _tx_thread_priority_change()
126 thread_ptr -> tx_thread_priority = new_priority; in _tx_thread_priority_change()
127 thread_ptr -> tx_thread_preempt_threshold = new_priority; in _tx_thread_priority_change()
164 thread_ptr -> tx_thread_user_priority = new_priority; in _tx_thread_priority_change()
165 thread_ptr -> tx_thread_user_preempt_threshold = new_priority; in _tx_thread_priority_change()
169 if (new_priority < thread_ptr -> tx_thread_inherit_priority) in _tx_thread_priority_change()
173 thread_ptr -> tx_thread_priority = new_priority; in _tx_thread_priority_change()
174 thread_ptr -> tx_thread_preempt_threshold = new_priority; in _tx_thread_priority_change()
210 thread_ptr -> tx_thread_user_priority = new_priority; in _tx_thread_priority_change()
211 thread_ptr -> tx_thread_user_preempt_threshold = new_priority; in _tx_thread_priority_change()
215 if (new_priority < thread_ptr -> tx_thread_inherit_priority) in _tx_thread_priority_change()
219 thread_ptr -> tx_thread_priority = new_priority; in _tx_thread_priority_change()
220 thread_ptr -> tx_thread_preempt_threshold = new_priority; in _tx_thread_priority_change()
266 if (original_priority < new_priority) in _tx_thread_priority_change()