[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

os.fork leaving processes behind

Garrick P

12/28/2007 12:37:00 AM

Hi all,

This may be more of a Linux question, but it relates to how Python
forks...

Today, I implemented a pretty simple listener script using os.fork.
The script runs fine, and performs as expected, but the process table
is left with an odd entry for every fork called.

I'm running on Slackware 9, under the 2.4 kernel, Python 2.5.1.

while True:
conn, addr = s.accept()
if os.fork():
continue
else:
handle_connection(conn)
sys.exit(0)

Running ps -ef results in a slew of '[ python <depreciated> ]' entries
(or something similar, I no longer have the actual output).

Will these clean themselves up if I leave the process running, and
what causes these?

Thanks in advance, G
2 Answers

Gabriel Genellina

12/28/2007 7:11:00 AM

0

En Thu, 27 Dec 2007 21:36:36 -0300, Falcolas <garrickp@gmail.com> escribió:

> This may be more of a Linux question, but it relates to how Python
> forks...

Yes; every book describing how to use fork tells about zombie processes
and the wait/waitpid functions. Just do the same thing in Python.

> Today, I implemented a pretty simple listener script using os.fork.
> The script runs fine, and performs as expected, but the process table
> is left with an odd entry for every fork called.

A "zombie".

> I'm running on Slackware 9, under the 2.4 kernel, Python 2.5.1.
>
> while True:
> conn, addr = s.accept()
> if os.fork():
> continue
> else:
> handle_connection(conn)
> sys.exit(0)

I'd try to use any of the existing server implementations in
SocketServer.py, but if you insist on using your own, look at the
ForkingMixin class as an example of using waitpid() to avoid having zombie
processes.

--
Gabriel Genellina

Garrick P

12/31/2007 6:21:00 PM

0

On Dec 28, 12:11 am, "Gabriel Genellina" <gagsl-...@yahoo.com.ar>
wrote:
> I'd try to use any of the existing server implementations in
> SocketServer.py, but if you insist on using your own, look at the
> ForkingMixin class as an example of using waitpid() to avoid having zombie
> processes.
>
> --
> Gabriel Genellina

Thanks for the excellent advice. I went with the SocketServer, and I'm
quite happy with the results. I had not considered it earlier due to
the atrocious documentation on the Python site. Google helped with
that immensely.

G