Lines Matching full:threads
2 Make sure that if threads are suspended outside of lldb, debugserver
19 on other threads, or calling functions both on the suspended thread and
20 on other threads."""
76 threads = lldbutil.continue_to_breakpoint(process, rt_bp)
77 self.assertEqual(len(threads), 1, "Hit the running_func breakpoint")
85 self.try_an_expression(threads[0], 0, st_bp)
88 threads = lldbutil.continue_to_breakpoint(process, rt_bp)
89 self.assertEqual(len(threads), 1, "We didn't hit running breakpoint")
93 for thread in process.threads:
105 threads = lldbutil.continue_to_breakpoint(process, rt_exit_bp)
106 self.assertEqual(len(threads), 1)
112 threads = lldbutil.continue_to_breakpoint(process, st_bp)
113 self.assertEqual(len(threads), 1, "The thread resumed successfully")
117 threads = lldbutil.continue_to_breakpoint(process, st_exit_bp)
118 self.assertEqual(len(threads), 1, "pthread_join exited successfully")