Home
last modified time | relevance | path

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

/freebsd-12.1/lib/libthr/thread/
H A Dthr_create.c90 new_thread->attr = *(*attr); in _pthread_create()
119 new_thread->magic = THR_MAGIC; in _pthread_create()
121 new_thread->arg = arg; in _pthread_create()
123 new_thread->cancel_async = 0; in _pthread_create()
142 new_thread->refcount = 1; in _pthread_create()
153 (*thread) = new_thread; in _pthread_create()
160 param.arg = new_thread; in _pthread_create()
184 new_thread->sigmask = oset; in _pthread_create()
205 new_thread->state = PS_DEAD; in _pthread_create()
208 new_thread->refcount--; in _pthread_create()
[all …]
/freebsd-12.1/contrib/gdb/gdb/gdbserver/
H A Dinferiors.c107 struct thread_info *new_thread in add_thread() local
108 = (struct thread_info *) malloc (sizeof (*new_thread)); in add_thread()
110 memset (new_thread, 0, sizeof (*new_thread)); in add_thread()
112 new_thread->entry.id = thread_id; in add_thread()
114 add_inferior_to_list (&all_threads, & new_thread->entry); in add_thread()
117 current_inferior = new_thread; in add_thread()
119 new_thread->target_data = target_data; in add_thread()
120 set_inferior_regcache_data (new_thread, new_register_cache ()); in add_thread()
/freebsd-12.1/contrib/gcc/
H A Dreorg.c2501 rtx new_thread; in fill_slots_from_thread() local
2589 new_thread = thread; in fill_slots_from_thread()
2614 new_thread = trial; in fill_slots_from_thread()
2633 new_thread = trial; in fill_slots_from_thread()
2709 new_thread = next_active_insn (new_thread); in fill_slots_from_thread()
2778 &new_thread); in fill_slots_from_thread()
2782 own_thread = own_thread_p (new_thread, new_thread, 0); in fill_slots_from_thread()
2808 trial = new_thread; in fill_slots_from_thread()
2884 if (new_thread && JUMP_P (new_thread) in fill_slots_from_thread()
2890 new_thread = follow_jumps (JUMP_LABEL (new_thread)); in fill_slots_from_thread()
[all …]
H A DChangeLog-200111030 steal_delay_list_from_target, update own_thread as new_thread may
/freebsd-12.1/usr.bin/truss/
H A Dsetup.c180 new_thread(struct procinfo *p, lwpid_t lwpid) in new_thread() function
227 t = new_thread(p, lwps[i]); in add_threads()
264 new_thread(np, lwpid); in new_proc()
711 new_thread(find_proc(info, si.si_pid), in eventloop()
/freebsd-12.1/contrib/openmp/runtime/src/
H A Dompt-specific.cpp447 uint64_t new_thread = KMP_TEST_THEN_INC64((kmp_int64 *)&thread); in __ompt_get_unique_id_internal() local
448 ID = new_thread << (sizeof(uint64_t) * 8 - OMPT_THREAD_ID_BITS); in __ompt_get_unique_id_internal()
/freebsd-12.1/contrib/apr/include/
H A Dapr_thread_proc.h266 APR_DECLARE(apr_status_t) apr_thread_create(apr_thread_t **new_thread,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectThread.cpp1379 Thread *new_thread = in DoExecute() local
1381 if (new_thread == nullptr) { in DoExecute()
1388 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true); in DoExecute()