Detecting problems in a forked process

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • James Colannino

    #1

    Detecting problems in a forked process

    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 appropriately. Here's, roughly, a pseudo example of what I
    want to do (I know the code itself is not correct):

    def function():

    pid = os.fork()

    if pid:
    do parent stuff
    else:
    try:
    execute the application
    exeption:
    somehow return -1 from within the parent process

    #try to start another application in the background from within a forked
    process
    if (function() == -1):
    fail

    Is there a way that I can do this? I thought, only for a *VERY* brief
    second, about cheating my way around this with a global variable, but
    then I realized that this wouldn't work due to the fact that I will have
    multiple forks doing the same thing at the same time. Thanks in advance :)

    James

    --
    My blog: http://www.crazydrclaw.com/
    My homepage: http://james.colannino.org/

    "If Carpenters made houses the way programmers design programs, the first woodpecker to come along would destroy all of civilization." --Computer Proverb

  • Jim Segrave

    #2
    Re: Detecting problems in a forked process

    In article <mailman.2690.1 135894161.18701 .python-list@python.org >,
    James Colannino <james@colannin o.org> wrote:[color=blue]
    >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 appropriately. Here's, roughly, a pseudo example of what I
    >want to do (I know the code itself is not correct):
    >
    >def function():
    >
    > pid = os.fork()
    >
    > if pid:
    > do parent stuff
    > else:
    > try:
    > execute the application
    > exeption:
    > somehow return -1 from within the parent process
    >
    >#try to start another application in the background from within a forked
    >process
    >if (function() == -1):
    > fail
    >
    >Is there a way that I can do this? I thought, only for a *VERY* brief
    >second, about cheating my way around this with a global variable, but
    >then I realized that this wouldn't work due to the fact that I will have
    >multiple forks doing the same thing at the same time. Thanks in advance :)[/color]

    options:

    Have the child set it's exit code to indicate success or failure and
    use one of the various os.wait functions in the parent to retrieve it.

    or

    create a pipe before forking and you can pass data back and forth
    between the parent and child

    or

    look at one of the shared memory libraries



    --
    Jim Segrave (jes@jes-2.demon.nl)

    Comment

    • Donn Cave

      #3
      Re: Detecting problems in a forked process

      Quoth Jim Segrave <jes@nl.demon.n et>:
      | In article <mailman.2690.1 135894161.18701 .python-list@python.org >,
      | James Colannino <james@colannin o.org> 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 separate application managed to start and return from within
      |> the parent appropriately.
      ....
      |> Is there a way that I can do this? I thought, only for a *VERY* brief
      |> second, about cheating my way around this with a global variable, but
      |> then I realized that this wouldn't work due to the fact that I will have
      |> multiple forks doing the same thing at the same time. Thanks in advance :)

      If your thought there had continued for another second or two, you
      probably would have wondered whether variables are shared between
      forks. (Actually they are, but only as an optimization - changes
      are not shared.)

      | options:
      |
      | Have the child set it's exit code to indicate success or failure and
      | use one of the various os.wait functions in the parent to retrieve it.

      This is the simplest, as long as it's easy to wait long enough to reliably
      catch the failure case.

      | create a pipe before forking and you can pass data back and forth
      | between the parent and child

      If you want the parent to wait for errors right up to the successful
      execve(), and then continue, you can set the 'close on exec' flag on
      the pipe write end file descriptor and make sure no process holds
      this open but the child fork. See the subprocess module for example
      code (or just use the subprocess module, if it's supported in the
      deployed Python version.)

      Donn Cave, donn@drizzle.co m

      Comment

      Working...