]> granicus.if.org Git - python/commitdiff
Bug 5906: add a documentation note for unix daemons vs. multiprocessing daemons
authorJesse Noller <jnoller@gmail.com>
Mon, 29 Jun 2009 18:20:34 +0000 (18:20 +0000)
committerJesse Noller <jnoller@gmail.com>
Mon, 29 Jun 2009 18:20:34 +0000 (18:20 +0000)
Doc/library/multiprocessing.rst

index 3d24202017da1900fe615137b97eadc315b5ae81..eb5ddff5248d2e2a9c480a2e68093a4aaff43f7d 100644 (file)
@@ -374,7 +374,9 @@ The :mod:`multiprocessing` package mostly replicates the API of the
 
       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.
+      terminated when its parent process exits. Additionally, these are **not**
+      Unix daemons or services, they are normal processes that will be
+      terminated (and not joined) if non-dameonic processes have exited.
 
    In addition to the  :class:`Threading.Thread` API, :class:`Process` objects
    also support the following attributes and methods: