Re: Detecting problems in a forked process

2005-12-29 Thread Donn Cave
Quoth Jim Segrave <[EMAIL PROTECTED]>: | In article <[EMAIL PROTECTED]>, | James Colannino <[EMAIL PROTECTED]> wrote: |> Hey everyone. I'm writing a small application in Python that uses |> os.fork() to create a separate process in which another application is |> run in the background. The pro

Re: Detecting problems in a forked process

2005-12-29 Thread Jim Segrave
In article <[EMAIL PROTECTED]>, James Colannino <[EMAIL PROTECTED]> wrote: >Hey everyone. I'm writing a small application in Python that uses >os.fork() to create a separate process in which another application is >run in the background. The problem is that I need to know whether or >not that

Detecting problems in a forked process

2005-12-29 Thread James Colannino
Hey everyone. I'm writing a small application in Python that uses os.fork() to create a separate process in which another application is run in the background. The problem is that I need to know whether or not that separate application managed to start and return from within the parent approp