diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-13 00:26:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-13 00:26:50 (GMT) |
commit | e68df0fbe51fc6980d48265e85664341f74fc9eb (patch) | |
tree | 4a6e06a0b0bd84c015718525809e581c828c5bec /Include/pythread.h | |
parent | 762681b5152671802d315833a661a79d01f2c5e7 (diff) | |
download | cpython-e68df0fbe51fc6980d48265e85664341f74fc9eb.zip cpython-e68df0fbe51fc6980d48265e85664341f74fc9eb.tar.gz cpython-e68df0fbe51fc6980d48265e85664341f74fc9eb.tar.bz2 |
Merged revisions 64212 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r64212 | benjamin.peterson | 2008-06-12 19:09:47 -0500 (Thu, 12 Jun 2008) | 3 lines
#1683 prevent forking from interfering in threading storage
This should prevent some test_multiprocessing failures
........
Diffstat (limited to 'Include/pythread.h')
-rw-r--r-- | Include/pythread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pythread.h b/Include/pythread.h index f26db16..b5a6ec3 100644 --- a/Include/pythread.h +++ b/Include/pythread.h @@ -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 |