diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-11-11 23:30:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 23:30:46 (GMT) |
commit | 67807cfc87135fdce4992d38d2ffe3e44747e73b (patch) | |
tree | c6723686f91afa7963e1ac72729a417f2067f7f9 /PCbuild/pythoncore.vcxproj | |
parent | 55c96e8053689c29ae28a9d2117ae37934eace68 (diff) | |
download | cpython-67807cfc87135fdce4992d38d2ffe3e44747e73b.zip cpython-67807cfc87135fdce4992d38d2ffe3e44747e73b.tar.gz cpython-67807cfc87135fdce4992d38d2ffe3e44747e73b.tar.bz2 |
gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)
The global allocators were stored in 3 static global variables: _PyMem_Raw, _PyMem, and _PyObject. State for the "small block" allocator was stored in another 13. That makes a total of 16 global variables. We are moving all 16 to the _PyRuntimeState struct as part of the work for gh-81057. (If PEP 684 is accepted then we will follow up by moving them all to PyInterpreterState.)
https://github.com/python/cpython/issues/81057
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 6d4d859..768f5f1 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -231,12 +231,15 @@ <ClInclude Include="..\Include\internal\pycore_moduleobject.h" /> <ClInclude Include="..\Include\internal\pycore_namespace.h" /> <ClInclude Include="..\Include\internal\pycore_object.h" /> + <ClInclude Include="..\Include\internal\pycore_obmalloc.h" /> + <ClInclude Include="..\Include\internal\pycore_obmalloc_init.h" /> <ClInclude Include="..\Include\internal\pycore_pathconfig.h" /> <ClInclude Include="..\Include\internal\pycore_pyarena.h" /> <ClInclude Include="..\Include\internal\pycore_pyerrors.h" /> <ClInclude Include="..\Include\internal\pycore_pyhash.h" /> <ClInclude Include="..\Include\internal\pycore_pylifecycle.h" /> <ClInclude Include="..\Include\internal\pycore_pymem.h" /> + <ClInclude Include="..\Include\internal\pycore_pymem_init.h" /> <ClInclude Include="..\Include\internal\pycore_pystate.h" /> <ClInclude Include="..\Include\internal\pycore_range.h" /> <ClInclude Include="..\Include\internal\pycore_runtime.h" /> |