Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
How do twisted and multiprocessing.Process create zombies?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
bitcycle  
View profile  
 More options Jul 5 2011, 5:52 pm
Newsgroups: comp.lang.python
From: bitcycle <sean.m.oc...@gmail.com>
Date: Tue, 5 Jul 2011 14:52:49 -0700 (PDT)
Local: Tues, Jul 5 2011 5:52 pm
Subject: How do twisted and multiprocessing.Process create zombies?
In python, using twisted loopingcall, multiprocessing.Process, and multiprocessing.Queue; is it possible to create a zombie process. And, if so, then how?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stefan Behnel  
View profile  
 More options Jul 5 2011, 8:47 pm
Newsgroups: comp.lang.python
From: Stefan Behnel <stefan...@behnel.de>
Date: Wed, 06 Jul 2011 02:47:55 +0200
Local: Tues, Jul 5 2011 8:47 pm
Subject: Re: How do twisted and multiprocessing.Process create zombies?
bitcycle, 05.07.2011 23:52:

> In python, using twisted loopingcall, multiprocessing.Process, and multiprocessing.Queue; is it possible to create a zombie process. And, if so, then how?

I think it's best to consult your local Voodoo master on the matter of
zombie creation processes.

That being said, there are far too many zombies around already, so please
don't add to that.

Stefan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nobody  
View profile  
 More options Jul 6 2011, 8:22 pm
Newsgroups: comp.lang.python
From: Nobody <nob...@nowhere.com>
Date: Thu, 07 Jul 2011 01:22:05 +0100
Local: Wed, Jul 6 2011 8:22 pm
Subject: Re: How do twisted and multiprocessing.Process create zombies?

On Tue, 05 Jul 2011 14:52:49 -0700, bitcycle wrote:
> In python, using twisted loopingcall, multiprocessing.Process, and
> multiprocessing.Queue; is it possible to create a zombie process. And, if
> so, then how?

A zombie is a process which has terminated but hasn't been wait()ed on
(aka "reaped") by its parent.

Most libraries which create child processes make some effort to reap them.
E.g. the subprocess module keeps a list of "orphaned" processes (those for
which the Popen object was deleted while the underlying process was still
alive), and polls the list periodically (specifically, whenever a new
Popen object is created).


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »