diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-31 21:41:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 21:41:18 (GMT) |
commit | 2bd960b57944107fbfbd8ff005b4223e1ea6555f (patch) | |
tree | 792ca10d0f2ed817b47df46085079b374bc043d7 /PCbuild/pythoncore.vcxproj | |
parent | c6d56135e151a19c79d002cb1f1dbcd1c766c51d (diff) | |
download | cpython-2bd960b57944107fbfbd8ff005b4223e1ea6555f.zip cpython-2bd960b57944107fbfbd8ff005b4223e1ea6555f.tar.gz cpython-2bd960b57944107fbfbd8ff005b4223e1ea6555f.tar.bz2 |
gh-108337: Add pyatomic.h header (#108701)
This adds a new header that provides atomic operations on common data
types. The intention is that this will be exposed through Python.h,
although that is not the case yet. The only immediate use is in
the test file.
Co-authored-by: Sam Gross <colesbury@gmail.com>
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 0b0f5ad..4cd095b 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -166,6 +166,8 @@ <ClInclude Include="..\Include\cpython\parser_interface.h" /> <ClInclude Include="..\Include\cpython\picklebufobject.h" /> <ClInclude Include="..\Include\cpython\pyarena.h" /> + <ClInclude Include="..\Include\cpython\pyatomic.h" /> + <ClInclude Include="..\Include\cpython\pyatomic_msc.h" /> <ClInclude Include="..\Include\cpython\pyctype.h" /> <ClInclude Include="..\Include\cpython\pydebug.h" /> <ClInclude Include="..\Include\cpython\pyerrors.h" /> |