Home
last modified time | relevance | path

Searched refs:POSIX_TCB (Results 1 – 21 of 21) sorted by relevance

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/posix/
Dpx_pth_init.c74 if (((POSIX_TCB *)thread_ptr < ptcb_pool) || in is_posix_thread()
75 ((POSIX_TCB *)thread_ptr > &ptcb_pool[PTHREAD_THREADS_MAX - 1])) in is_posix_thread()
171 VOID posix_reset_pthread_t (POSIX_TCB *ptcb) in posix_reset_pthread_t()
216 VOID posix_copy_pthread_attr(POSIX_TCB *pthread_ptr,pthread_attr_t *attr) in posix_copy_pthread_attr()
271 INT posix_allocate_pthread_t(POSIX_TCB **ptcb_ptr) in posix_allocate_pthread_t()
274 POSIX_TCB *ptcb; in posix_allocate_pthread_t()
278 *ptcb_ptr = (POSIX_TCB *)0; in posix_allocate_pthread_t()
362 POSIX_TCB *pthread_ptr; in posix_thread_wrapper()
366 TX_THREAD_EXTENSION_PTR_GET(pthread_ptr, POSIX_TCB, pthr_ptr) in posix_thread_wrapper()
415 POSIX_TCB *posix_thread2tcb(TX_THREAD *thread_ptr) in posix_thread2tcb()
[all …]
Dpx_int.h97 PX_OBJECT_DECLARE POSIX_TCB ptcb_pool[PTHREAD_THREADS_MAX];
177 VOID posix_reset_pthread_t(POSIX_TCB *ptcb);
181 POSIX_TCB *posix_tid2tcb(pthread_t ptid);
185 POSIX_TCB *posix_thread2tcb(TX_THREAD *thread_ptr);
187 TX_THREAD *posix_tcb2thread (POSIX_TCB *pthread_ptr);
195 INT posix_allocate_pthread_t(POSIX_TCB **ptcb_ptr);
197 VOID posix_copy_pthread_attr(POSIX_TCB *pthread_ptr,pthread_attr_t *attr);
199 VOID posix_destroy_pthread(POSIX_TCB *pthread_ptr, VOID *value_ptr);
201 VOID posix_do_pthread_delete(POSIX_TCB *pthread_ptr, VOID *value_ptr);
Dpx_system_manager.c76 POSIX_TCB *pthread_ptr; in posix_system_manager_entry()
95 pthread_ptr = (POSIX_TCB *)((((ALIGN_TYPE)request[0]) << 32) | request[1]); in posix_system_manager_entry()
98 pthread_ptr = (POSIX_TCB *)request[0]; in posix_system_manager_entry()
Dpx_pth_exit.c80 POSIX_TCB *pthread_ptr; in pthread_exit()
85 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_exit()
Dpx_sig_signal.c74 POSIX_TCB *current_thread; in signal()
95 current_thread = (POSIX_TCB *) tx_thread_identify(); in signal()
Dpx_pth_self.c83 if (((POSIX_TCB *) thread_ptr) -> signals.signal_handler) in pthread_self()
87 thread_ID = (pthread_t) ((POSIX_TCB *) thread_ptr) -> signals.base_thread_ptr; in pthread_self()
Dpx_internal_signal_dispatch.c76 POSIX_TCB *signal_thread; in internal_signal_dispatch()
77 POSIX_TCB *target_thread; in internal_signal_dispatch()
91 signal_thread = (POSIX_TCB *) tx_thread_identify(); in internal_signal_dispatch()
Dpx_pth_getcanceltype.c75 POSIX_TCB *pthread_ptr; in pthread_getcanceltype()
85 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_getcanceltype()
Dpx_pth_setcanceltype.c77 POSIX_TCB *pthread_ptr; in pthread_setcanceltype()
87 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_setcanceltype()
Dpx_pth_setcancelstate.c78 POSIX_TCB *pthread_ptr; in pthread_setcancelstate()
88 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_setcancelstate()
Dpx_pth_cancel.c75 POSIX_TCB *pthread_ptr; in pthread_cancel()
90 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_cancel()
Dpx_sig_wait.c83 POSIX_TCB *base_thread; in sigwait()
88 base_thread = (POSIX_TCB *) tx_thread_identify(); in sigwait()
Dpx_pth_testcancel.c75 POSIX_TCB *pthread_ptr; in pthread_testcancel()
Dpx_pth_getschedparam.c76 POSIX_TCB *thread_tcb; in pthread_getschedparam()
Dpx_pth_detach.c87 POSIX_TCB *pthread_ptr; in pthread_detach()
Dpx_pth_sigmask.c86 POSIX_TCB *base_thread; in pthread_sigmask()
110 base_thread = (POSIX_TCB *) tx_thread_identify(); in pthread_sigmask()
Dpx_pth_kill.c86 POSIX_TCB *target_thread; in pthread_kill()
87 POSIX_TCB *new_signal_thread; in pthread_kill()
111 target_thread = (POSIX_TCB *) thread_id; in pthread_kill()
Dpx_pth_setschedparam.c78 POSIX_TCB *thread_tcb; in pthread_setschedparam()
Dpx_pth_join.c92 POSIX_TCB *current_ptr, *target_ptr; in pthread_join()
Dpx_pth_create.c114 POSIX_TCB *pthread_ptr, *current_thread_ptr; in pthread_create()
Dtx_posix.h348 }POSIX_TCB; typedef