]> granicus.if.org Git - python/commitdiff
#1683 prevent forking from interfering in threading storage
authorBenjamin Peterson <benjamin@python.org>
Fri, 13 Jun 2008 00:09:47 +0000 (00:09 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 13 Jun 2008 00:09:47 +0000 (00:09 +0000)
This should prevent some test_multiprocessing failures

Include/pythread.h
Modules/signalmodule.c
Parser/intrcheck.c
Python/thread.c

index f26db160bf4bea53cca0c9f564850c64ab52c7b3..b5a6ec38a6efda9608a739f11e432252a1d861bd 100644 (file)
@@ -40,6 +40,9 @@ PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
 PyAPI_FUNC(void *) PyThread_get_key_value(int);
 PyAPI_FUNC(void) PyThread_delete_key_value(int key);
 
+/* Cleanup after a fork */
+PyAPI_FUNC(void) PyThread_ReInitTLS(void);
+
 #ifdef __cplusplus
 }
 #endif
index d07258a46db99a0a046ba3711354671de9a95e8d..e297240120624560c006980e65f0ea8063237b52 100644 (file)
@@ -925,5 +925,6 @@ PyOS_AfterFork(void)
        main_thread = PyThread_get_thread_ident();
        main_pid = getpid();
        _PyImport_ReInitLock();
+       PyThread_ReInitTLS();
 #endif
 }
index e0f3252db6c44be3e2d24a324909d75fc5f28446..1356191436cfa1cd62c82fc4cbfc5e470fe2f78d 100644 (file)
@@ -2,6 +2,7 @@
 /* Check for interrupts */
 
 #include "Python.h"
+#include "pythread.h"
 
 #ifdef QUICKWIN
 
@@ -172,5 +173,6 @@ PyOS_AfterFork(void)
 {
 #ifdef WITH_THREAD
        PyEval_ReInitThreads();
+       PyThread_ReInitTLS();
 #endif
 }
index 9a4dc251f9afedd3fd9d0237a72a8620038133b3..b21e53b6cdf8a8dfb94009d6f94b7ad2a90dfbd8 100644 (file)
@@ -381,4 +381,35 @@ PyThread_delete_key_value(int key)
        PyThread_release_lock(keymutex);
 }
 
+/* Forget everything not associated with the current thread id.
+ * This function is called from PyOS_AfterFork().  It is necessary
+ * because other thread ids which were in use at the time of the fork
+ * may be reused for new threads created in the forked process.
+ */
+void
+PyThread_ReInitTLS(void)
+{
+       long id = PyThread_get_thread_ident();
+       struct key *p, **q;
+
+       if (!keymutex)
+               return;
+       
+       /* As with interpreter_lock in PyEval_ReInitThreads()
+          we just create a new lock without freeing the old one */
+       keymutex = PyThread_allocate_lock();
+
+       /* Delete all keys which do not match the current thread id */
+       q = &keyhead;
+       while ((p = *q) != NULL) {
+               if (p->id != id) {
+                       *q = p->next;
+                       free((void *)p);
+                       /* NB This does *not* free p->value! */
+               }
+               else
+                       q = &p->next;
+       }
+}
+
 #endif /* Py_HAVE_NATIVE_TLS */