]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-33015: Use malloc() in PyThread_start_new_thread() (GH-10829)
authorVictor Stinner <vstinner@redhat.com>
Fri, 30 Nov 2018 17:08:02 +0000 (18:08 +0100)
committerGitHub <noreply@github.com>
Fri, 30 Nov 2018 17:08:02 +0000 (18:08 +0100)
commitbc9f53f69e8207027bf2b18e3d01b30401e76ace
tree1c8892446fca4e94e285349b3f6314ace6c29b75
parent8f83c2fb19c45350c2161d9e75dab4cd2bcaee28
bpo-33015: Use malloc() in PyThread_start_new_thread() (GH-10829)

The pthread implementation of PyThread_start_new_thread() now uses
malloc/free rather than PyMem_Malloc/PyMem_Free, since the latters
are not thread-safe.
Python/thread_pthread.h