forked from OSchip/llvm-project
[opt-viewer] Kill parser processes before moving onto rendering
The main benefit is that they release the memory they were holding onto. llvm-svn: 326127
This commit is contained in:
parent
9dea9b4918
commit
713eb05c8c
|
@ -48,6 +48,8 @@ def pmap(func, iterable, processes, should_print_progress, *args, **kwargs):
|
|||
initargs=(_current, _total,),
|
||||
processes=processes)
|
||||
result = pool.map(_wrapped_func, func_and_args, *args, **kwargs)
|
||||
pool.close()
|
||||
pool.join()
|
||||
|
||||
if should_print_progress:
|
||||
sys.stdout.write('\r')
|
||||
|
|
Loading…
Reference in New Issue