Tagged Questions
1
vote
1answer
91 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:
...
1
vote
1answer
943 views
How to check if process already exists in python script? [duplicate]
Possible Duplicate:
Check for process already running in webfaction?
How can I check if a process is already being run using Python + Django on WebFaction hosting?
For example, my process ...