Lines Matching refs:priority_thread_ptr
81 TX_THREAD *priority_thread_ptr; in _tx_queue_prioritize() local
135 priority_thread_ptr = head_ptr; in _tx_queue_prioritize()
138 thread_ptr = priority_thread_ptr -> tx_thread_suspended_next; in _tx_queue_prioritize()
151 if (thread_ptr -> tx_thread_priority < priority_thread_ptr -> tx_thread_priority) in _tx_queue_prioritize()
155 priority_thread_ptr = thread_ptr; in _tx_queue_prioritize()
201 priority_thread_ptr = head_ptr; in _tx_queue_prioritize()
204 thread_ptr = priority_thread_ptr -> tx_thread_suspended_next; in _tx_queue_prioritize()
217 if (priority_thread_ptr != head_ptr) in _tx_queue_prioritize()
225 … next_thread = priority_thread_ptr -> tx_thread_suspended_next; in _tx_queue_prioritize()
226 …previous_thread = priority_thread_ptr -> tx_thread_suspended_previous; in _tx_queue_prioritize()
232 priority_thread_ptr -> tx_thread_suspended_next = head_ptr; in _tx_queue_prioritize()
233 priority_thread_ptr -> tx_thread_suspended_previous = previous_thread; in _tx_queue_prioritize()
234 previous_thread -> tx_thread_suspended_next = priority_thread_ptr; in _tx_queue_prioritize()
235 head_ptr -> tx_thread_suspended_previous = priority_thread_ptr; in _tx_queue_prioritize()
238 queue_ptr -> tx_queue_suspension_list = priority_thread_ptr; in _tx_queue_prioritize()