mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
gh-109795: _thread.start_new_thread: allocate thread bootstate using raw memory allocator (#109808)
This commit is contained in:
parent
f19416534a
commit
1b8f2366b3
1 changed files with 6 additions and 3 deletions
|
|
@ -1066,7 +1066,7 @@ thread_bootstate_free(struct bootstate *boot, int decref)
|
||||||
Py_DECREF(boot->args);
|
Py_DECREF(boot->args);
|
||||||
Py_XDECREF(boot->kwargs);
|
Py_XDECREF(boot->kwargs);
|
||||||
}
|
}
|
||||||
PyMem_Free(boot);
|
PyMem_RawFree(boot);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1184,13 +1184,16 @@ thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct bootstate *boot = PyMem_NEW(struct bootstate, 1);
|
// gh-109795: Use PyMem_RawMalloc() instead of PyMem_Malloc(),
|
||||||
|
// because it should be possible to call thread_bootstate_free()
|
||||||
|
// without holding the GIL.
|
||||||
|
struct bootstate *boot = PyMem_RawMalloc(sizeof(struct bootstate));
|
||||||
if (boot == NULL) {
|
if (boot == NULL) {
|
||||||
return PyErr_NoMemory();
|
return PyErr_NoMemory();
|
||||||
}
|
}
|
||||||
boot->tstate = _PyThreadState_New(interp);
|
boot->tstate = _PyThreadState_New(interp);
|
||||||
if (boot->tstate == NULL) {
|
if (boot->tstate == NULL) {
|
||||||
PyMem_Free(boot);
|
PyMem_RawFree(boot);
|
||||||
if (!PyErr_Occurred()) {
|
if (!PyErr_Occurred()) {
|
||||||
return PyErr_NoMemory();
|
return PyErr_NoMemory();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue