Lines Matching refs:next_thread
377 TX_THREAD *next_thread; in _tx_semaphore_get() local
474 … next_thread = semaphore_ptr -> tx_semaphore_suspension_list; in _tx_semaphore_get()
475 thread_ptr -> tx_thread_suspended_next = next_thread; in _tx_semaphore_get()
476 … previous_thread = next_thread -> tx_thread_suspended_previous; in _tx_semaphore_get()
479 next_thread -> tx_thread_suspended_previous = thread_ptr; in _tx_semaphore_get()
723 TX_THREAD *next_thread; in _tx_thread_create() local
885 next_thread = _tx_thread_created_ptr; in _tx_thread_create()
886 previous_thread = next_thread -> tx_thread_created_previous; in _tx_thread_create()
889 next_thread -> tx_thread_created_previous = thread_ptr; in _tx_thread_create()
894 thread_ptr -> tx_thread_created_next = next_thread; in _tx_thread_create()
1033 TX_THREAD *next_thread; in _tx_mutex_get() local
1210 … next_thread = mutex_ptr -> tx_mutex_suspension_list; in _tx_mutex_get()
1211 thread_ptr -> tx_thread_suspended_next = next_thread; in _tx_mutex_get()
1212 … previous_thread = next_thread -> tx_thread_suspended_previous; in _tx_mutex_get()
1215 next_thread -> tx_thread_suspended_previous = thread_ptr; in _tx_mutex_get()
1775 TX_THREAD *next_thread; in _tx_mutex_put() local
2169 … next_thread = thread_ptr -> tx_thread_suspended_next; in _tx_mutex_put()
2170 mutex_ptr -> tx_mutex_suspension_list = next_thread; in _tx_mutex_put()
2174 next_thread -> tx_thread_suspended_previous = previous_thread; in _tx_mutex_put()
2175 previous_thread -> tx_thread_suspended_next = next_thread; in _tx_mutex_put()