Hello everyone


I've just read the doc of the (awesome) "multiprocessing" module, and there are some little things I don't understand, concerning daemon processes (see quotes below).

When a python process exits, the page says it attempts to join all its children. Is this just a design choice, or are there constraints behind this ? Because normally, when a parent process exits, its child gets adopted by init, and that can be useful for creating daemons, can't it ?

Concerning daemons processes, precisely, the manual states that they are all terminated when their parent process exits. But isn't it contrary to the concept of dameons, which are supposed to have become independent from their parent ?

And I don't understand how "the initial value (of the "daemonic" attribute) is inherited from the creating process", since "daemonic processes are not allowed to create child processes". Isn't it the same to say that "daemonic" is always false by default, then ? And finally, why can't daemonic processes have children ? If these children get "orphaned" when the daemonic process gets terminated (by its parent), they'll simply get adpoted by init, won't they ?

Thanks a lot for helping me get rid of my confusion,
regards,
Pascal


=========QUOTES==========
daemon¶ <http://docs.python.org/library/multiprocessing.html#multiprocessing.Process.daemon>

   The process's daemon flag, a Boolean value. This must be set before
   start()
   
<http://docs.python.org/library/multiprocessing.html#multiprocessing.Process.start>
   is called.

   The initial value is inherited from the creating process.

   When a process exits, it attempts to terminate all of its daemonic
   child processes.

   Note that a daemonic process is not allowed to create child
   processes. Otherwise a daemonic process would leave its children
   orphaned if it gets terminated when its parent process exits.

   ----------------------

Similarly, if the child process is non-daemonic then the parent
process may hang on exit when it tries to join all its non-daemonic children.
--------------
Remember also that non-daemonic
processes will be automatically be joined.


--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to