Lines Matching refs:next_mutex
89 TX_MUTEX *next_mutex; in _tx_mutex_put() local
204 next_mutex = mutex_ptr -> tx_mutex_owned_next; in _tx_mutex_put()
206 next_mutex -> tx_mutex_owned_previous = previous_mutex; in _tx_mutex_put()
207 previous_mutex -> tx_mutex_owned_next = next_mutex; in _tx_mutex_put()
214 thread_ptr -> tx_thread_owned_mutex_list = next_mutex; in _tx_mutex_put()
263 next_mutex = thread_ptr -> tx_thread_owned_mutex_list; in _tx_mutex_put()
264 while (next_mutex != TX_NULL) in _tx_mutex_put()
268 if (next_mutex -> tx_mutex_inherit == TX_TRUE) in _tx_mutex_put()
273 … if (next_mutex -> tx_mutex_highest_priority_waiting < inheritance_priority) in _tx_mutex_put()
277 … inheritance_priority = next_mutex -> tx_mutex_highest_priority_waiting; in _tx_mutex_put()
282 next_mutex = next_mutex -> tx_mutex_owned_next; in _tx_mutex_put()
285 if (next_mutex == thread_ptr -> tx_thread_owned_mutex_list) in _tx_mutex_put()
289 next_mutex = TX_NULL; in _tx_mutex_put()
453 … next_mutex = thread_ptr -> tx_thread_owned_mutex_list; in _tx_mutex_put()
454 … previous_mutex = next_mutex -> tx_mutex_owned_previous; in _tx_mutex_put()
457 next_mutex -> tx_mutex_owned_previous = mutex_ptr; in _tx_mutex_put()
462 mutex_ptr -> tx_mutex_owned_next = next_mutex; in _tx_mutex_put()