forked from OSchip/llvm-project
[dosep] Fix-up callers of process_dir, after it got its argument removed
llvm-svn: 251830
This commit is contained in:
parent
06665475cd
commit
48c6b52f92
|
@ -337,7 +337,7 @@ def process_dir_worker_multiprocessing(
|
|||
while not job_queue.empty():
|
||||
try:
|
||||
job = job_queue.get(block=False)
|
||||
result = process_dir(job[0], job[1], job[2], job[3],
|
||||
result = process_dir(job[0], job[1], job[2],
|
||||
inferior_pid_events)
|
||||
result_queue.put(result)
|
||||
except queue.Empty:
|
||||
|
@ -360,7 +360,7 @@ def process_dir_worker_threading(job_queue, result_queue, inferior_pid_events):
|
|||
while not job_queue.empty():
|
||||
try:
|
||||
job = job_queue.get(block=False)
|
||||
result = process_dir(job[0], job[1], job[2], job[3],
|
||||
result = process_dir(job[0], job[1], job[2],
|
||||
inferior_pid_events)
|
||||
result_queue.put(result)
|
||||
except queue.Empty:
|
||||
|
|
Loading…
Reference in New Issue