summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-07-17 10:25:19 (GMT)
committerGitHub <noreply@github.com>2017-07-17 10:25:19 (GMT)
commit2c8a5e4c968217f9672340e520942c4ed788d8de (patch)
tree54a62a443b3ac1302ddb130ae8893467874325c2 /Misc/NEWS.d
parent68d663cf85d1ac5eaf83482eed39c0a6f8093601 (diff)
downloadcpython-2c8a5e4c968217f9672340e520942c4ed788d8de.zip
cpython-2c8a5e4c968217f9672340e520942c4ed788d8de.tar.gz
cpython-2c8a5e4c968217f9672340e520942c4ed788d8de.tar.bz2
bpo-30808: Use _Py_atomic API for concurrency-sensitive signal state (#2417)
* Improve signal delivery Avoid using Py_AddPendingCall from signal handler, to avoid calling signal-unsafe functions. * Remove unused function * Improve comments * Use _Py_atomic API for concurrency-sensitive signal state * Add blurb
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-07-17-12-12-59.bpo-30808.bA3zOv.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-07-17-12-12-59.bpo-30808.bA3zOv.rst b/Misc/NEWS.d/next/Core and Builtins/2017-07-17-12-12-59.bpo-30808.bA3zOv.rst
new file mode 100644
index 0000000..8adbbe7
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-07-17-12-12-59.bpo-30808.bA3zOv.rst
@@ -0,0 +1 @@
+Use _Py_atomic API for concurrency-sensitive signal state.