Skip to content

Commit

Permalink
Merged revisions 78777,78787,78790 via svnmerge from
Browse files Browse the repository at this point in the history
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78777 | florent.xicluna | 2010-03-08 00:49:03 +0100 (lun, 08 mar 2010) | 4 lines

  Backport the Popen.poll() protection from subprocess to multiprocessing. See #1731717.
  It should fix transient failures on test_multiprocessing.
........
  r78787 | florent.xicluna | 2010-03-08 08:21:16 +0100 (lun, 08 mar 2010) | 2 lines

  Don't fail on a debug() statement, if the worker PID is (still) None.
........
  r78790 | florent.xicluna | 2010-03-08 12:01:39 +0100 (lun, 08 mar 2010) | 2 lines

  On finalize, don't try to join not started process.
........
  • Loading branch information
florentx committed Mar 8, 2010
1 parent 4886d24 commit 998171f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 6 additions & 1 deletion Lib/multiprocessing/forking.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@ def __init__(self, process_obj):

def poll(self, flag=os.WNOHANG):
if self.returncode is None:
pid, sts = os.waitpid(self.pid, flag)
try:
pid, sts = os.waitpid(self.pid, flag)
except os.error:
# Child process not yet created. See #1731717
# e.errno == errno.ECHILD == 10
return None
if pid == self.pid:
if os.WIFSIGNALED(sts):
self.returncode = -os.WTERMSIG(sts)
Expand Down
8 changes: 3 additions & 5 deletions Lib/multiprocessing/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,12 +448,10 @@ def _terminate_pool(cls, taskqueue, inqueue, outqueue, pool,
if pool and hasattr(pool[0], 'terminate'):
debug('joining pool workers')
for p in pool:
p.join()
for w in pool:
if w.exitcode is None:
if p.is_alive():
# worker has not yet exited
debug('cleaning up worker %d' % w.pid)
w.join()
debug('cleaning up worker %d' % p.pid)
p.join()

#
# Class whose instances are returned by `Pool.apply_async()`
Expand Down

0 comments on commit 998171f

Please sign in to comment.