Re: How to Spawn a process with P_NOWAIT and pass it some data ?

2009-05-21 Thread Nick Craig-Wood
Barak, Ron ron.ba...@lsi.com wrote: This is my first try at IPC in Python, and I would like to ask your help wi= th the following problem: I would like to spawn a process with P_NOWAIT, and pass some data to the ch= ild process. I created two scripts to try IPC (in a blocking way):

How to Spawn a process with P_NOWAIT and pass it some data ?

2009-05-20 Thread Barak, Ron
Hi, This is my first try at IPC in Python, and I would like to ask your help with the following problem: I would like to spawn a process with P_NOWAIT, and pass some data to the child process. I created two scripts to try IPC (in a blocking way): $ cat subprocess_sender.py #!/usr/bin/env

Re: How to Spawn a process with P_NOWAIT and pass it some data ?

2009-05-20 Thread MRAB
Barak, Ron wrote: Hi, This is my first try at IPC in Python, and I would like to ask your help with the following problem: I would like to spawn a process with P_NOWAIT, and pass some data to the child process. I created two scripts to try IPC (in a blocking way): $ cat