Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_gdbserver/
Dinferiors.c100 struct thread_info *new_thread in add_thread() local
101 = (struct thread_info *) malloc (sizeof (*new_thread)); in add_thread()
103 VG_(memset) (new_thread, 0, sizeof (*new_thread)); in add_thread()
105 new_thread->entry.id = thread_id; in add_thread()
107 add_inferior_to_list (&all_threads, & new_thread->entry); in add_thread()
110 current_inferior = new_thread; in add_thread()
112 new_thread->target_data = target_data; in add_thread()
113 set_inferior_regcache_data (new_thread, new_register_cache ()); in add_thread()
114 new_thread->gdb_id = gdb_id; in add_thread()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/
D14-1.c49 pthread_t new_thread; in main() local
51 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
56 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D16-1.c66 pthread_t new_thread; in main() local
68 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
73 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D10-1.c58 pthread_t new_thread; in main() local
60 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
65 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D9-1.c97 pthread_t new_thread; in main() local
99 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
104 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D5-1.c120 pthread_t new_thread; in main() local
122 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
127 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D4-1.c110 pthread_t new_thread; in main() local
112 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
117 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D7-1.c83 pthread_t new_thread; in main() local
85 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
90 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D8-3.c84 pthread_t new_thread; in main() local
86 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
91 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D8-2.c85 pthread_t new_thread; in main() local
87 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
92 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D8-1.c84 pthread_t new_thread; in main() local
86 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
91 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D6-1.c131 pthread_t new_thread; in main() local
133 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
138 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D12-1.c121 pthread_t new_thread; in main() local
123 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
128 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
/external/ltp/testcases/kernel/sched/clisrv/
Dpthserv.c91 void *new_thread(void *); in main()
153 if (pthread_create(&th, &newattr, new_thread, in main()
167 void *new_thread(void *arg_) in new_thread() function
/external/autotest/client/site_tests/power_Thermal/
Dpower_Thermal.py107 new_thread = threading.Thread(target=self._cpu_heater)
108 self.worker_threads.append(new_thread)
109 new_thread.daemon = True
110 new_thread.start()
/external/valgrind/callgrind/
Dthreads.c102 thread_info* new_thread(void) in new_thread() function
163 if (thread[tid] == 0) thread[tid] = new_thread(); in CLG_()
/external/valgrind/drd/
Ddrd_pthread_intercepts.c596 void *arg, long flags, thread_t *new_thread) in thr_create_intercept() argument
620 flags, new_thread); in thr_create_intercept()
638 long flags, thread_t *new_thread),
639 (stk, stksize, start, arg, flags, new_thread));
/external/valgrind/helgrind/
Dhg_intercepts.c491 void *arg, long flags, thread_t *new_thread) in thr_create_WRK() argument
510 new_thread); in thr_create_WRK()
532 void *arg, long flags, thread_t *new_thread) { in PTH_FUNC() argument
533 return thr_create_WRK(stk, stksize, start, arg, flags, new_thread); in PTH_FUNC()
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-darwin.c7622 ThreadState *new_thread; in PRE() local
7633 new_thread = build_thread(regs, req->flavor, req->new_stateCnt); in PRE()
7636 hijack_thread_state(regs, req->flavor, req->new_stateCnt, new_thread); in PRE()