Lines Matching refs:queue_ptr
76 UINT _tx_queue_flush(TX_QUEUE *queue_ptr) in _tx_queue_flush() argument
94 …TX_TRACE_IN_LINE_INSERT(TX_TRACE_QUEUE_FLUSH, queue_ptr, TX_POINTER_TO_ULONG_CONVERT(&thread_ptr),… in _tx_queue_flush()
100 if (queue_ptr -> tx_queue_enqueued != TX_NO_MESSAGES) in _tx_queue_flush()
106 queue_ptr -> tx_queue_enqueued = TX_NO_MESSAGES; in _tx_queue_flush()
107 queue_ptr -> tx_queue_available_storage = queue_ptr -> tx_queue_capacity; in _tx_queue_flush()
108 queue_ptr -> tx_queue_read = queue_ptr -> tx_queue_start; in _tx_queue_flush()
109 queue_ptr -> tx_queue_write = queue_ptr -> tx_queue_start; in _tx_queue_flush()
112 if (queue_ptr -> tx_queue_suspended_count != TX_NO_SUSPENSIONS) in _tx_queue_flush()
119 suspension_list = queue_ptr -> tx_queue_suspension_list; in _tx_queue_flush()
120 suspended_count = queue_ptr -> tx_queue_suspended_count; in _tx_queue_flush()
123 queue_ptr -> tx_queue_suspension_list = TX_NULL; in _tx_queue_flush()
124 queue_ptr -> tx_queue_suspended_count = TX_NO_SUSPENSIONS; in _tx_queue_flush()