summaryrefslogtreecommitdiffstats
path: root/Include/cpython/pyatomic_std.h
Commit message (Collapse)AuthorAgeFilesLines
* gh-109693: Update _gil_runtime_state.locked to use pyatomic.h (gh-110836)Donghee Na2023-10-161-0/+17
|
* gh-108337: Add pyatomic.h header (#108701)Victor Stinner2023-08-311-0/+872
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>