Home
last modified time | relevance | path

Searched refs:new_thread (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/lib/libthr/thread/
H A Dthr_create.c86 new_thread->attr = *(*attr); in _pthread_create()
115 new_thread->magic = THR_MAGIC; in _pthread_create()
117 new_thread->arg = arg; in _pthread_create()
119 new_thread->cancel_async = 0; in _pthread_create()
138 new_thread->refcount = 1; in _pthread_create()
149 (*thread) = new_thread; in _pthread_create()
156 param.arg = new_thread; in _pthread_create()
180 new_thread->sigmask = oset; in _pthread_create()
201 new_thread->state = PS_DEAD; in _pthread_create()
204 new_thread->refcount--; in _pthread_create()
[all …]
/freebsd-14.2/usr.bin/truss/
H A Dsetup.c262 new_thread(struct procinfo *p, lwpid_t lwpid) in new_thread() function
309 t = new_thread(p, lwps[i]); in add_threads()
346 new_thread(np, lwpid); in new_proc()
794 new_thread(find_proc(info, si.si_pid), in eventloop()
/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dompt-specific.cpp500 uint64_t new_thread = KMP_TEST_THEN_INC64((kmp_int64 *)&thread); in __ompt_get_unique_id_internal() local
501 ID = new_thread << (sizeof(uint64_t) * 8 - OMPT_THREAD_ID_BITS); in __ompt_get_unique_id_internal()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp1235 Thread *new_thread = nullptr; in DoExecute() local
1243 new_thread = process->GetThreadList().FindThreadByIndexID(index_id).get(); in DoExecute()
1244 if (new_thread == nullptr) { in DoExecute()
1250 new_thread = in DoExecute()
1252 if (new_thread == nullptr) { in DoExecute()
1259 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true); in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h652 HostThread SetIOHandlerThread(HostThread &new_thread);
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp2099 HostThread Debugger::SetIOHandlerThread(HostThread &new_thread) { in SetIOHandlerThread() argument
2101 m_io_handler_thread = new_thread; in SetIOHandlerThread()