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

/freebsd-10.0-release/lib/libkse/thread/
H A Dthr_create.c84 struct pthread *curthread, *new_thread; local
107 if ((new_thread = _thr_alloc(curthread)) == NULL) {
114 new_thread->attr = _pthread_attr_default;
116 new_thread->attr = *(*attr);
120 new_thread->attr.flags |= PTHREAD_SCOPE_SYSTEM;
122 new_thread->attr.flags &= ~PTHREAD_SCOPE_SYSTEM;
130 new_thread->attr.flags |= PTHREAD_SCOPE_SYSTEM;
133 new_thread->attr.flags &= ~PTHREAD_SCOPE_SYSTEM;
134 if (create_stack(&new_thread->attr) != 0) {
137 _thr_free(curthread, new_thread);
[all...]
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_create.c54 struct pthread *curthread, *new_thread; local
73 if ((new_thread = _thr_alloc(curthread)) == NULL)
80 new_thread->attr = _pthread_attr_default;
82 new_thread->attr = *(*attr);
83 cpusetp = new_thread->attr.cpuset;
84 cpusetsize = new_thread->attr.cpusetsize;
85 new_thread->attr.cpuset = NULL;
86 new_thread->attr.cpusetsize = 0;
88 if (new_thread->attr.sched_inherit == PTHREAD_INHERIT_SCHED) {
91 new_thread
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/gdbserver/
H A Dinferiors.c107 struct thread_info *new_thread local
108 = (struct thread_info *) malloc (sizeof (*new_thread));
110 memset (new_thread, 0, sizeof (*new_thread));
112 new_thread->entry.id = thread_id;
114 add_inferior_to_list (&all_threads, & new_thread->entry);
117 current_inferior = new_thread;
119 new_thread->target_data = target_data;
120 set_inferior_regcache_data (new_thread, new_register_cache ());
/freebsd-10.0-release/contrib/gcc/
H A Dreorg.c2518 rtx new_thread;
2547 new_thread = thread = try_split (PATTERN (thread), thread, 0);
2605 if (new_thread == trial)
2606 new_thread = thread;
2614 new_thread = next_active_insn (trial);
2630 if (new_thread == old_trial)
2631 new_thread = trial;
2649 if (new_thread == old_trial)
2650 new_thread = trial;
2682 if (new_thread
2501 rtx new_thread; local
[all...]
/freebsd-10.0-release/contrib/apr/include/
H A Dapr_thread_proc.h258 * @param new_thread The newly created thread handle.
264 APR_DECLARE(apr_status_t) apr_thread_create(apr_thread_t **new_thread,
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectThread.cpp1188 Thread *new_thread = process->GetThreadList().FindThreadByIndexID(index_id).get(); local
1189 if (new_thread == NULL)
1196 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true);

Completed in 208 milliseconds