summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
diff options
context:
space:
mode:
authorSam Gross <colesbury@gmail.com>2024-06-21 19:50:18 (GMT)
committerGitHub <noreply@github.com>2024-06-21 19:50:18 (GMT)
commit8f17d69b7bc906e8407095317842cc0fd52cd84a (patch)
tree316f24eb7d801391c24e2c0bf8a54bc1a846a1b7 /Misc/NEWS.d/next/C API
parent03fa2df92707b543c304a426732214002f81d671 (diff)
downloadcpython-8f17d69b7bc906e8407095317842cc0fd52cd84a.zip
cpython-8f17d69b7bc906e8407095317842cc0fd52cd84a.tar.gz
cpython-8f17d69b7bc906e8407095317842cc0fd52cd84a.tar.bz2
gh-119344: Make critical section API public (#119353)
This makes the following macros public as part of the non-limited C-API for locking a single object or two objects at once. * `Py_BEGIN_CRITICAL_SECTION(op)` / `Py_END_CRITICAL_SECTION()` * `Py_BEGIN_CRITICAL_SECTION2(a, b)` / `Py_END_CRITICAL_SECTION2()` The supporting functions and structs used by the macros are also exposed for cases where C macros are not available.
Diffstat (limited to 'Misc/NEWS.d/next/C API')
-rw-r--r--Misc/NEWS.d/next/C API/2024-05-21-19-41-41.gh-issue-119344.QKvzQb.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-05-21-19-41-41.gh-issue-119344.QKvzQb.rst b/Misc/NEWS.d/next/C API/2024-05-21-19-41-41.gh-issue-119344.QKvzQb.rst
new file mode 100644
index 0000000..5a2e4d9
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2024-05-21-19-41-41.gh-issue-119344.QKvzQb.rst
@@ -0,0 +1 @@
+The critical section API is now public as part of the non-limited C API.