Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/common/src/
Dtx_byte_pool_search.c91 UCHAR *current_ptr; in _tx_byte_pool_search() local
117 current_ptr = TX_NULL; in _tx_byte_pool_search() local
129 current_ptr = pool_ptr -> tx_byte_pool_search; in _tx_byte_pool_search()
146 work_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (sizeof(UCHAR *))); in _tx_byte_pool_search()
155 pool_ptr->tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
165 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
169 available_bytes = TX_UCHAR_POINTER_DIF(next_ptr, current_ptr); in _tx_byte_pool_search()
215 pool_ptr -> tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
222 current_ptr = *next_block_link_ptr; in _tx_byte_pool_search()
245 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
[all …]
/ThreadX-v6.4.1/common_smp/src/
Dtx_byte_pool_search.c92 UCHAR *current_ptr; in _tx_byte_pool_search() local
122 current_ptr = TX_NULL; in _tx_byte_pool_search() local
134 current_ptr = pool_ptr -> tx_byte_pool_search; in _tx_byte_pool_search()
151 work_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (sizeof(UCHAR *))); in _tx_byte_pool_search()
160 pool_ptr->tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
170 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
174 available_bytes = TX_UCHAR_POINTER_DIF(next_ptr, current_ptr); in _tx_byte_pool_search()
220 pool_ptr -> tx_byte_pool_search = current_ptr; in _tx_byte_pool_search()
227 current_ptr = *next_block_link_ptr; in _tx_byte_pool_search()
250 this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); in _tx_byte_pool_search()
[all …]
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/posix/
Dpx_pth_join.c92 POSIX_TCB *current_ptr, *target_ptr; in pthread_join() local
97 current_ptr = posix_thread2tcb(tx_thread_identify()); in pthread_join()
100 if (!current_ptr) in pthread_join()
108 if ( current_ptr->pthreadID == thread) in pthread_join()
116 if ( current_ptr->is_joined_to == TX_TRUE) in pthread_join()
168 current_ptr->is_joined_to = TX_TRUE; in pthread_join()
170 current_ptr->joined_to_pthreadID = thread; in pthread_join()
174 target_ptr->joined_by_pthreadID = current_ptr->pthreadID ; in pthread_join()
179 tx_thread_suspend ( &(current_ptr->thread_info)); in pthread_join()