]> granicus.if.org Git - python/commitdiff
Issue #14308: Fix an exception when a "dummy" thread is in the threading module's...
authorAntoine Pitrou <solipsis@pitrou.net>
Thu, 19 Apr 2012 21:55:01 +0000 (23:55 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Thu, 19 Apr 2012 21:55:01 +0000 (23:55 +0200)
Lib/test/test_threading.py
Lib/threading.py
Misc/NEWS

index 1a02ef2e314765f5e6f497a6232ee3a5e81eb0ea..ef04cd360a4f5fcb7638a8b7b3edf1e705d540db 100644 (file)
@@ -2,6 +2,8 @@
 
 import test.test_support
 from test.test_support import verbose
+from test.script_helper import assert_python_ok
+
 import random
 import re
 import sys
@@ -414,6 +416,33 @@ class ThreadTests(BaseTestCase):
                          msg=('%d references still around' %
                               sys.getrefcount(weak_raising_cyclic_object())))
 
+    @unittest.skipUnless(hasattr(os, 'fork'), 'test needs fork()')
+    def test_dummy_thread_after_fork(self):
+        # Issue #14308: a dummy thread in the active list doesn't mess up
+        # the after-fork mechanism.
+        code = """if 1:
+            import thread, threading, os, time
+
+            def background_thread(evt):
+                # Creates and registers the _DummyThread instance
+                threading.current_thread()
+                evt.set()
+                time.sleep(10)
+
+            evt = threading.Event()
+            thread.start_new_thread(background_thread, (evt,))
+            evt.wait()
+            assert threading.active_count() == 2, threading.active_count()
+            if os.fork() == 0:
+                assert threading.active_count() == 1, threading.active_count()
+                os._exit(0)
+            else:
+                os.wait()
+        """
+        _, out, err = assert_python_ok("-c", code)
+        self.assertEqual(out, '')
+        self.assertEqual(err, '')
+
 
 class ThreadJoinOnShutdown(BaseTestCase):
 
index ff32dfb41c8dbc3258fb5055322229308663c988..22908550e09cc1ee1ac7e667798a38c9e9d488cb 100644 (file)
@@ -605,6 +605,10 @@ class Thread(_Verbose):
                     pass
 
     def __stop(self):
+        # DummyThreads delete self.__block, but they have no waiters to
+        # notify anyway (join() is forbidden on them).
+        if not hasattr(self, '_Thread__block'):
+            return
         self.__block.acquire()
         self.__stopped = True
         self.__block.notify_all()
index 6ae6e53e3a79b74b5702f05cd94b8660e0833080..20ca9684f57a98b91e4f1f9403c80ca5567b8b13 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #14308: Fix an exception when a "dummy" thread is in the threading
+  module's active list after a fork().
+
 - Issue #14538: HTMLParser can now parse correctly start tags that contain
   a bare '/'.