Home | History | Annotate | Download | only in tools

Lines Matching refs:Thread

84     # Spawn N-1 threads and then use this thread as the last one.
88 thread = threading.Thread(target=self.RunSingle, args=[])
89 threads.append(thread)
90 thread.start()
94 for thread in threads:
96 thread.join(timeout=10000000)