/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_barrier.cpp | 805 kmp_uint32 child_tid; in __kmp_tree_barrier_gather() local 822 child_tid = (tid << branch_bits) + 1; in __kmp_tree_barrier_gather() 823 if (child_tid < nproc) { in __kmp_tree_barrier_gather() 828 kmp_info_t *child_thr = other_threads[child_tid]; in __kmp_tree_barrier_gather() 832 if (child + 1 <= branch_factor && child_tid + 1 < nproc) in __kmp_tree_barrier_gather() 834 &other_threads[child_tid + 1]->th.th_bar[bt].bb.b_arrived); in __kmp_tree_barrier_gather() 839 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(child_tid, team), in __kmp_tree_barrier_gather() 840 team->t.t_id, child_tid, &child_bar->b_arrived, new_state)); in __kmp_tree_barrier_gather() 855 gtid, team->t.t_id, tid, __kmp_gtid_from_tid(child_tid, team), in __kmp_tree_barrier_gather() 856 team->t.t_id, child_tid)); in __kmp_tree_barrier_gather() [all …]
|
/freebsd/sys/compat/linux/ |
H A D | linux_fork.c | 183 em->child_set_tid = args->child_tid; in linux_clone_proc() 188 em->child_clear_tid = args->child_tid; in linux_clone_proc() 246 args->parent_tid, args->child_tid); in linux_clone_thread() 295 em->child_set_tid = args->child_tid; in linux_clone_thread() 300 em->child_clear_tid = args->child_tid; in linux_clone_thread() 363 .child_tid = args->child_tidptr, in linux_clone() 457 ca->child_tid = PTRIN(uca->child_tid); in linux_clone3()
|
H A D | linux_fork.h | 72 uint64_t child_tid; member 88 l_int *child_tid; member
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeThreadFreeBSD.cpp | 133 lldb::tid_t child_tid) { in SetStoppedByFork() argument 139 m_stop_info.details.fork.child_tid = child_tid; in SetStoppedByFork() 143 lldb::tid_t child_tid) { in SetStoppedByVFork() argument 149 m_stop_info.details.fork.child_tid = child_tid; in SetStoppedByVFork()
|
H A D | NativeThreadFreeBSD.h | 67 void SetStoppedByFork(lldb::pid_t child_pid, lldb::tid_t child_tid); 68 void SetStoppedByVFork(lldb::pid_t child_pid, lldb::tid_t child_tid);
|
H A D | NativeProcessFreeBSD.cpp | 1024 lldb::tid_t child_tid = info.pl_lwpid; in MonitorClone() local 1041 parent_thread.SetStoppedByVFork(child_pid, child_tid); in MonitorClone() 1043 parent_thread.SetStoppedByFork(child_pid, child_tid); in MonitorClone()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeThreadNetBSD.cpp | 133 lldb::tid_t child_tid) { in SetStoppedByFork() argument 139 m_stop_info.details.fork.child_tid = child_tid; in SetStoppedByFork() 143 lldb::tid_t child_tid) { in SetStoppedByVFork() argument 149 m_stop_info.details.fork.child_tid = child_tid; in SetStoppedByVFork()
|
H A D | NativeThreadNetBSD.h | 62 void SetStoppedByFork(lldb::pid_t child_pid, lldb::tid_t child_tid); 63 void SetStoppedByVFork(lldb::pid_t child_pid, lldb::tid_t child_tid);
|
H A D | NativeProcessNetBSD.cpp | 1064 lldb::tid_t child_tid = info.psi_lwpid; in MonitorClone() 1081 parent_thread.SetStoppedByVFork(child_pid, child_tid); in SaveCore() 1083 parent_thread.SetStoppedByFork(child_pid, child_tid); in SaveCore() 1043 lldb::tid_t child_tid = info.psi_lwpid; MonitorClone() local
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | StopInfo.h | 143 lldb::tid_t child_tid); 147 lldb::tid_t child_tid);
|
H A D | Process.h | 1059 virtual void DidFork(lldb::pid_t child_pid, lldb::tid_t child_tid) {} in DidFork() argument 1062 virtual void DidVFork(lldb::pid_t child_pid, lldb::tid_t child_tid) {} in DidVFork() argument
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StopInfo.cpp | 1272 StopInfoFork(Thread &thread, lldb::pid_t child_pid, lldb::tid_t child_tid) in StopInfoFork() argument 1274 m_child_tid(child_tid) {} in StopInfoFork() 1306 StopInfoVFork(Thread &thread, lldb::pid_t child_pid, lldb::tid_t child_tid) in StopInfoVFork() argument 1308 m_child_tid(child_tid) {} in StopInfoVFork() 1420 lldb::tid_t child_tid) { in CreateStopReasonFork() argument 1421 return StopInfoSP(new StopInfoFork(thread, child_pid, child_tid)); in CreateStopReasonFork() 1427 lldb::tid_t child_tid) { in CreateStopReasonVFork() argument 1428 return StopInfoSP(new StopInfoVFork(thread, child_pid, child_tid)); in CreateStopReasonVFork()
|
/freebsd/sys/sys/ |
H A D | thr.h | 54 long *child_tid; /* address to store new TID. */ member
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | Debug.h | 145 lldb::tid_t child_tid; member
|
/freebsd/sys/kern/ |
H A D | kern_thr.c | 158 if ((param->child_tid != NULL && in thr_new_initthr() 159 suword_lwpid(param->child_tid, td->td_tid)) || in thr_new_initthr()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.h | 236 void DidFork(lldb::pid_t child_pid, lldb::tid_t child_tid) override; 237 void DidVFork(lldb::pid_t child_pid, lldb::tid_t child_tid) override;
|
H A D | ProcessGDBRemote.cpp | 1866 lldb::tid_t child_tid = desc_extractor.GetU64(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo() local 1868 StopInfo::CreateStopReasonFork(*thread_sp, child_pid, child_tid)); in SetThreadStopInfo() 1874 lldb::tid_t child_tid = desc_extractor.GetU64(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo() local 1876 *thread_sp, child_pid, child_tid)); in SetThreadStopInfo() 5734 void ProcessGDBRemote::DidFork(lldb::pid_t child_pid, lldb::tid_t child_tid) { in DidFork() argument 5750 detach_tid = child_tid; in DidFork() 5754 follow_tid = child_tid; in DidFork() 5799 void ProcessGDBRemote::DidVFork(lldb::pid_t child_pid, lldb::tid_t child_tid) { in DidVFork() argument 5805 child_pid, child_tid); in DidVFork() 5818 detach_tid = child_tid; in DidVFork() [all …]
|
H A D | GDBRemoteCommunicationServerLLGS.cpp | 991 tid_stop_info.details.fork.child_tid); in PrepareStopReplyPacketForThread()
|
/freebsd/lib/libthr/thread/ |
H A D | thr_create.c | 161 param.child_tid = &new_thread->tid; in _pthread_create()
|
/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32.h | 316 uint32_t child_tid; member
|
H A D | freebsd32_misc.c | 3241 param.child_tid = PTRIN(param32.child_tid); in freebsd32_thr_new()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_posix.cpp | 2337 void *arg, int *parent_tid, void *tls, pid_t *child_tid) { in TSAN_INTERCEPTOR() argument 2339 child_tid); in TSAN_INTERCEPTOR() 2360 child_tid); in TSAN_INTERCEPTOR()
|