Tagged Questions
1
vote
1answer
95 views
Managing the output streams of many subprocesses with deadlocks
I have a Python script that does more or less this
current_tasks = TaskManager()
MAXPROCS = 8
while len(outstanding_tasks) > 0:
if len(current_tasks.running) < MAXPROCS:
...