Searched refs:new_thread (Results 1 – 7 of 7) sorted by relevance
/freebsd/lib/libthr/thread/ |
H A D | thr_create.c | 62 struct pthread *curthread, *new_thread; in _pthread_create() local 83 if ((new_thread = _thr_alloc(curthread)) == NULL) in _pthread_create() 90 new_thread->attr = _pthread_attr_default; in _pthread_create() 92 new_thread->attr = *(*attr); in _pthread_create() 93 cpusetp = new_thread->attr.cpuset; in _pthread_create() 94 cpusetsize = new_thread->attr.cpusetsize; in _pthread_create() 95 new_thread->attr.cpuset = NULL; in _pthread_create() 96 new_thread->attr.cpusetsize = 0; in _pthread_create() 98 if (new_thread->attr.sched_inherit == PTHREAD_INHERIT_SCHED) { in _pthread_create() 101 new_thread->attr.flags |= PTHREAD_SCOPE_SYSTEM; in _pthread_create() [all …]
|
/freebsd/crypto/krb5/src/tests/threads/ |
H A D | t_rcache.c | 234 pthread_t new_thread; in main() local 236 perr = pthread_create(&new_thread, 0, run_a_loop, &ip[i]); in main()
|
/freebsd/usr.bin/truss/ |
H A D | setup.c | 262 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/contrib/llvm-project/openmp/runtime/src/ |
H A D | ompt-specific.cpp | 498 uint64_t new_thread = KMP_TEST_THEN_INC64((kmp_int64 *)&thread); in __ompt_get_unique_id_internal() local 499 ID = new_thread << (sizeof(uint64_t) * 8 - OMPT_THREAD_ID_BITS); in __ompt_get_unique_id_internal()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectThread.cpp | 1197 Thread *new_thread = nullptr; in DoExecute() local 1205 new_thread = process->GetThreadList().FindThreadByIndexID(index_id).get(); in DoExecute() 1206 if (new_thread == nullptr) { in DoExecute() 1212 new_thread = in DoExecute() 1214 if (new_thread == nullptr) { in DoExecute() 1221 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true); in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Debugger.h | 661 HostThread SetIOHandlerThread(HostThread &new_thread);
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Debugger.cpp | 2140 HostThread Debugger::SetIOHandlerThread(HostThread &new_thread) { in SetIOHandlerThread() argument 2142 m_io_handler_thread = new_thread; in SetIOHandlerThread()
|