Home
last modified time | relevance | path

Searched refs:current_ptr (Results 1 – 3 of 3) sorted by relevance

/ThreadX-v6.3.0/common/src/
Dtx_byte_pool_search.c92 UCHAR *current_ptr; in _tx_byte_pool_search() local
118 current_ptr = TX_NULL; in _tx_byte_pool_search() local
130 current_ptr = pool_ptr -> tx_byte_pool_search; in _tx_byte_pool_search()
147 work_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (sizeof(UCHAR *))); in _tx_byte_pool_search()
156 pool_ptr->tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
166 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
170 available_bytes = TX_UCHAR_POINTER_DIF(next_ptr, current_ptr); in _tx_byte_pool_search()
216 pool_ptr -> tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
223 current_ptr = *next_block_link_ptr; in _tx_byte_pool_search()
246 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
[all …]
/ThreadX-v6.3.0/common_smp/src/
Dtx_byte_pool_search.c93 UCHAR *current_ptr; in _tx_byte_pool_search() local
123 current_ptr = TX_NULL; in _tx_byte_pool_search() local
135 current_ptr = pool_ptr -> tx_byte_pool_search; in _tx_byte_pool_search()
152 work_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (sizeof(UCHAR *))); in _tx_byte_pool_search()
161 pool_ptr->tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
171 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
175 available_bytes = TX_UCHAR_POINTER_DIF(next_ptr, current_ptr); in _tx_byte_pool_search()
221 pool_ptr -> tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
228 current_ptr = *next_block_link_ptr; in _tx_byte_pool_search()
251 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
[all …]
/ThreadX-v6.3.0/utility/rtos_compatibility_layers/posix/
Dpx_pth_join.c93 POSIX_TCB *current_ptr, *target_ptr; in pthread_join() local
98 current_ptr = posix_thread2tcb(tx_thread_identify()); in pthread_join()
101 if (!current_ptr) in pthread_join()
109 if ( current_ptr->pthreadID == thread) in pthread_join()
117 if ( current_ptr->is_joined_to == TX_TRUE) in pthread_join()
169 current_ptr->is_joined_to = TX_TRUE; in pthread_join()
171 current_ptr->joined_to_pthreadID = thread; in pthread_join()
175 target_ptr->joined_by_pthreadID = current_ptr->pthreadID ; in pthread_join()
180 tx_thread_suspend ( &(current_ptr->thread_info)); in pthread_join()