Lines Matching refs:priority_thread_ptr
81 TX_THREAD *priority_thread_ptr; in _tx_mutex_prioritize() local
138 priority_thread_ptr = head_ptr; in _tx_mutex_prioritize()
141 thread_ptr = priority_thread_ptr -> tx_thread_suspended_next; in _tx_mutex_prioritize()
154 if (thread_ptr -> tx_thread_priority < priority_thread_ptr -> tx_thread_priority) in _tx_mutex_prioritize()
158 priority_thread_ptr = thread_ptr; in _tx_mutex_prioritize()
204 priority_thread_ptr = head_ptr; in _tx_mutex_prioritize()
207 thread_ptr = priority_thread_ptr -> tx_thread_suspended_next; in _tx_mutex_prioritize()
220 if (priority_thread_ptr != head_ptr) in _tx_mutex_prioritize()
228 … next_thread = priority_thread_ptr -> tx_thread_suspended_next; in _tx_mutex_prioritize()
229 …previous_thread = priority_thread_ptr -> tx_thread_suspended_previous; in _tx_mutex_prioritize()
235 priority_thread_ptr -> tx_thread_suspended_next = head_ptr; in _tx_mutex_prioritize()
236 priority_thread_ptr -> tx_thread_suspended_previous = previous_thread; in _tx_mutex_prioritize()
237 previous_thread -> tx_thread_suspended_next = priority_thread_ptr; in _tx_mutex_prioritize()
238 head_ptr -> tx_thread_suspended_previous = priority_thread_ptr; in _tx_mutex_prioritize()
241 mutex_ptr -> tx_mutex_suspension_list = priority_thread_ptr; in _tx_mutex_prioritize()