summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-03 23:28:07 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-03 23:28:07 (GMT)
commit45b9be52de2a418761da197599c01d6719ac5b88 (patch)
tree455fbe266934b9c822a63d4fa4ea6126b534a6f0 /Include
parenta761227ae0595062897c3dfacfa01b8ed026288e (diff)
downloadcpython-45b9be52de2a418761da197599c01d6719ac5b88.zip
cpython-45b9be52de2a418761da197599c01d6719ac5b88.tar.gz
cpython-45b9be52de2a418761da197599c01d6719ac5b88.tar.bz2
Merged revisions 78638 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78638 | victor.stinner | 2010-03-04 00:20:25 +0100 (jeu., 04 mars 2010) | 3 lines Issue #7544: Preallocate thread memory before creating the thread to avoid a fatal error in low memory condition. ........
Diffstat (limited to 'Include')
-rw-r--r--Include/pystate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index c27e827..f85fa8c 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -115,6 +115,8 @@ PyAPI_FUNC(int) _PyState_AddModule(PyObject*, struct PyModuleDef*);
PyAPI_FUNC(PyObject*) PyState_FindModule(struct PyModuleDef*);
PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *);
+PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *);
+PyAPI_FUNC(void) _PyThreadState_Init(PyThreadState *);
PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *);
PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *);
#ifdef WITH_THREAD