Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/posix/
Dpx_pth_init.c75 if (((POSIX_TCB *)thread_ptr < ptcb_pool) || in is_posix_thread()
76 ((POSIX_TCB *)thread_ptr > &ptcb_pool[PTHREAD_THREADS_MAX - 1])) in is_posix_thread()
172 VOID posix_reset_pthread_t (POSIX_TCB *ptcb) in posix_reset_pthread_t()
217 VOID posix_copy_pthread_attr(POSIX_TCB *pthread_ptr,pthread_attr_t *attr) in posix_copy_pthread_attr()
272 INT posix_allocate_pthread_t(POSIX_TCB **ptcb_ptr) in posix_allocate_pthread_t()
275 POSIX_TCB *ptcb; in posix_allocate_pthread_t()
279 *ptcb_ptr = (POSIX_TCB *)0; in posix_allocate_pthread_t()
363 POSIX_TCB *pthread_ptr; in posix_thread_wrapper()
367 TX_THREAD_EXTENSION_PTR_GET(pthread_ptr, POSIX_TCB, pthr_ptr) in posix_thread_wrapper()
416 POSIX_TCB *posix_thread2tcb(TX_THREAD *thread_ptr) in posix_thread2tcb()
[all …]
Dpx_int.h98 PX_OBJECT_DECLARE POSIX_TCB ptcb_pool[PTHREAD_THREADS_MAX];
178 VOID posix_reset_pthread_t(POSIX_TCB *ptcb);
182 POSIX_TCB *posix_tid2tcb(pthread_t ptid);
186 POSIX_TCB *posix_thread2tcb(TX_THREAD *thread_ptr);
188 TX_THREAD *posix_tcb2thread (POSIX_TCB *pthread_ptr);
196 INT posix_allocate_pthread_t(POSIX_TCB **ptcb_ptr);
198 VOID posix_copy_pthread_attr(POSIX_TCB *pthread_ptr,pthread_attr_t *attr);
200 VOID posix_destroy_pthread(POSIX_TCB *pthread_ptr, VOID *value_ptr);
202 VOID posix_do_pthread_delete(POSIX_TCB *pthread_ptr, VOID *value_ptr);
Dpx_system_manager.c77 POSIX_TCB *pthread_ptr; in posix_system_manager_entry()
96 pthread_ptr = (POSIX_TCB *)((((ALIGN_TYPE)request[0]) << 32) | request[1]); in posix_system_manager_entry()
99 pthread_ptr = (POSIX_TCB *)request[0]; in posix_system_manager_entry()
Dpx_pth_exit.c81 POSIX_TCB *pthread_ptr; in pthread_exit()
86 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_exit()
Dpx_sig_signal.c75 POSIX_TCB *current_thread; in signal()
96 current_thread = (POSIX_TCB *) tx_thread_identify(); in signal()
Dpx_pth_self.c84 if (((POSIX_TCB *) thread_ptr) -> signals.signal_handler) in pthread_self()
88 thread_ID = (pthread_t) ((POSIX_TCB *) thread_ptr) -> signals.base_thread_ptr; in pthread_self()
Dpx_internal_signal_dispatch.c77 POSIX_TCB *signal_thread; in internal_signal_dispatch()
78 POSIX_TCB *target_thread; in internal_signal_dispatch()
92 signal_thread = (POSIX_TCB *) tx_thread_identify(); in internal_signal_dispatch()
Dpx_pth_getcanceltype.c76 POSIX_TCB *pthread_ptr; in pthread_getcanceltype()
86 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_getcanceltype()
Dpx_pth_setcancelstate.c79 POSIX_TCB *pthread_ptr; in pthread_setcancelstate()
89 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_setcancelstate()
Dpx_pth_setcanceltype.c78 POSIX_TCB *pthread_ptr; in pthread_setcanceltype()
88 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_setcanceltype()
Dpx_pth_cancel.c76 POSIX_TCB *pthread_ptr; in pthread_cancel()
91 pthread_ptr = (POSIX_TCB *)thread_ptr; in pthread_cancel()
Dpx_sig_wait.c84 POSIX_TCB *base_thread; in sigwait()
89 base_thread = (POSIX_TCB *) tx_thread_identify(); in sigwait()
Dpx_pth_testcancel.c76 POSIX_TCB *pthread_ptr; in pthread_testcancel()
Dpx_pth_getschedparam.c77 POSIX_TCB *thread_tcb; in pthread_getschedparam()
Dpx_pth_detach.c88 POSIX_TCB *pthread_ptr; in pthread_detach()
Dpx_pth_sigmask.c87 POSIX_TCB *base_thread; in pthread_sigmask()
111 base_thread = (POSIX_TCB *) tx_thread_identify(); in pthread_sigmask()
Dpx_pth_kill.c87 POSIX_TCB *target_thread; in pthread_kill()
88 POSIX_TCB *new_signal_thread; in pthread_kill()
112 target_thread = (POSIX_TCB *) thread_id; in pthread_kill()
Dpx_pth_setschedparam.c79 POSIX_TCB *thread_tcb; in pthread_setschedparam()
Dpx_pth_join.c93 POSIX_TCB *current_ptr, *target_ptr; in pthread_join()
Dpx_pth_create.c115 POSIX_TCB *pthread_ptr, *current_thread_ptr; in pthread_create()
Dtx_posix.h349 }POSIX_TCB; typedef