summaryrefslogtreecommitdiff
path: root/Include/pythonrun.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-04 20:04:29 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-04 20:04:29 +0200
commitfc20b0c65c446f79e39d006f3cffed03aa745380 (patch)
treed26d9bdfcce057847cc8b878621ac59ad547c695 /Include/pythonrun.h
parentc17c6d95cf989a89d77ab4a655599531479bd268 (diff)
parent0d5e52d3469a310001afe50689f77ddba6d554d1 (diff)
downloadcpython-git-fc20b0c65c446f79e39d006f3cffed03aa745380.tar.gz
Issue #1856: Avoid crashes and lockups when daemon threads run while the
interpreter is shutting down; instead, these threads are now killed when they try to take the GIL.
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r--Include/pythonrun.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index 2cf929fb4b..bdad15c652 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -211,6 +211,8 @@ PyAPI_FUNC(void) PyByteArray_Fini(void);
PyAPI_FUNC(void) PyFloat_Fini(void);
PyAPI_FUNC(void) PyOS_FiniInterrupts(void);
PyAPI_FUNC(void) _PyGC_Fini(void);
+
+PyAPI_DATA(PyThreadState *) _Py_Finalizing;
#endif
/* Stuff with no proper home (yet) */