Searched refs:thread_2 (Results 1 - 9 of 9) sorted by relevance

/external/lldb/test/functionalities/thread/create_after_attach/
H A Dmain.c40 pthread_t thread_2; local
53 pthread_create (&thread_2, NULL, thread_2_func, NULL);
57 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/multi_break/
H A Dmain.cpp50 pthread_t thread_2; local
57 pthread_create (&thread_2, NULL, thread_func, NULL);
61 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/step_out/
H A Dmain.cpp52 pthread_t thread_2; local
59 pthread_create (&thread_2, NULL, thread_func, NULL);
63 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/create_during_step/
H A Dmain.cpp66 pthread_t thread_2; local
79 pthread_create (&thread_2, NULL, create_thread_func, &thread_1);
88 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/exit_during_step/
H A Dmain.cpp70 pthread_t thread_2; local
79 pthread_create (&thread_2, NULL, exit_thread_func, NULL);
82 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/
H A Dmain.c28 pthread_t thread_2; local
29 pthread_create (&thread_2, NULL, thread2, NULL);
34 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/thread_exit/
H A Dmain.cpp60 pthread_t thread_2; local
74 pthread_create (&thread_2, NULL, thread2, NULL); // Set first breakpoint here
86 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/break_after_join/
H A Dmain.cpp91 pthread_t thread_2; local
110 pthread_create (&thread_2, NULL, wait_thread_func, NULL);
121 pthread_join(thread_2, NULL);
/external/lldb/test/functionalities/thread/exit_during_break/
H A Dmain.cpp95 pthread_t thread_2; local
117 pthread_create (&thread_2, NULL, wait_thread_func, NULL);
131 pthread_join(thread_2, NULL);

Completed in 100 milliseconds