Home | History | Annotate | Download | only in releasetools

Lines Matching refs:threads

264   def __init__(self, tgt, src=None, threads=None, version=4,
266 if threads is None:
267 threads = multiprocessing.cpu_count() // 2
268 if threads == 0:
269 threads = 1
270 self.threads = threads
771 if self.threads > 1:
772 print("Computing patches (using %d threads)..." % (self.threads,))
797 threads = [threading.Thread(target=diff_worker)
798 for _ in range(self.threads)]
799 for th in threads:
801 while threads:
802 threads.pop().join()