Skip to content

Commit

Permalink
Merged revisions 78638 via svnmerge from
Browse files Browse the repository at this point in the history
svn+ssh://[email protected]/python/trunk

........
  r78638 | victor.stinner | 2010-03-04 00:20:25 +0100 (jeu., 04 mars 2010) | 3 lines

  Issue python#7544: Preallocate thread memory before creating the thread to avoid a
  fatal error in low memory condition.
........
  • Loading branch information
Victor Stinner committed Mar 3, 2010
1 parent a761227 commit 45b9be5
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Include/pystate.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------

- Issue #7544: Preallocate thread memory before creating the thread to avoid
a fatal error in low memory condition.

- Issue #7820: The parser tokenizer restores all bytes in the right if
the BOM check fails.

Expand Down
12 changes: 10 additions & 2 deletions Modules/_threadmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@ struct bootstate {
PyObject *func;
PyObject *args;
PyObject *keyw;
PyThreadState *tstate;
};

static void
Expand All @@ -704,8 +705,9 @@ t_bootstrap(void *boot_raw)
PyThreadState *tstate;
PyObject *res;

tstate = PyThreadState_New(boot->interp);

tstate = boot->tstate;
tstate->thread_id = PyThread_get_thread_ident();
_PyThreadState_Init(tstate);
PyEval_AcquireThread(tstate);
nb_threads++;
res = PyEval_CallObjectWithKeywords(
Expand Down Expand Up @@ -770,6 +772,11 @@ thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs)
boot->func = func;
boot->args = args;
boot->keyw = keyw;
boot->tstate = _PyThreadState_Prealloc(boot->interp);
if (boot->tstate == NULL) {
PyMem_DEL(boot);
return PyErr_NoMemory();
}
Py_INCREF(func);
Py_INCREF(args);
Py_XINCREF(keyw);
Expand All @@ -780,6 +787,7 @@ thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs)
Py_DECREF(func);
Py_DECREF(args);
Py_XDECREF(keyw);
PyThreadState_Clear(boot->tstate);
PyMem_DEL(boot);
return NULL;
}
Expand Down
29 changes: 24 additions & 5 deletions Python/pystate.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ threadstate_getframe(PyThreadState *self)
return self->frame;
}

PyThreadState *
PyThreadState_New(PyInterpreterState *interp)
static PyThreadState *
new_threadstate(PyInterpreterState *interp, int init)
{
PyThreadState *tstate = (PyThreadState *)malloc(sizeof(PyThreadState));

Expand Down Expand Up @@ -198,9 +198,8 @@ PyThreadState_New(PyInterpreterState *interp)
tstate->c_profileobj = NULL;
tstate->c_traceobj = NULL;

#ifdef WITH_THREAD
_PyGILState_NoteThreadState(tstate);
#endif
if (init)
_PyThreadState_Init(tstate);

HEAD_LOCK();
tstate->next = interp->tstate_head;
Expand All @@ -211,6 +210,26 @@ PyThreadState_New(PyInterpreterState *interp)
return tstate;
}

PyThreadState *
PyThreadState_New(PyInterpreterState *interp)
{
return new_threadstate(interp, 1);
}

PyThreadState *
_PyThreadState_Prealloc(PyInterpreterState *interp)
{
return new_threadstate(interp, 0);
}

void
_PyThreadState_Init(PyThreadState *tstate)
{
#ifdef WITH_THREAD
_PyGILState_NoteThreadState(tstate);
#endif
}

PyObject*
PyState_FindModule(struct PyModuleDef* m)
{
Expand Down

0 comments on commit 45b9be5

Please sign in to comment.