summarylogtreecommitdiffstats
path: root/0059-expose-sem_unlink.patch
diff options
context:
space:
mode:
authoratomlong2021-10-23 17:55:22 +0800
committeratomlong2021-10-23 18:06:15 +0800
commit80096c8de4b34ec1ed8f30bb428918cd592b2424 (patch)
treeb48dd1e73de9ea35a4709fb6b93deb16331ec514 /0059-expose-sem_unlink.patch
parent89a67c05174951d172252b1db96ff93cc4ec4bcd (diff)
downloadaur-mingw-w64-python.tar.gz
update to 3.9.7
Diffstat (limited to '0059-expose-sem_unlink.patch')
-rw-r--r--0059-expose-sem_unlink.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/0059-expose-sem_unlink.patch b/0059-expose-sem_unlink.patch
new file mode 100644
index 000000000000..7f1859461381
--- /dev/null
+++ b/0059-expose-sem_unlink.patch
@@ -0,0 +1,29 @@
+From 9aca6a28934f67df24b2b640c1d8c40623f40afd Mon Sep 17 00:00:00 2001
+From: Christoph Reiter <reiter.christoph@gmail.com>
+Date: Thu, 17 Jun 2021 18:52:12 +0530
+Subject: [PATCH 059/N] expose sem_unlink
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Co-authored-by: Алексей <alexey.pawlow@gmail.com>
+---
+ Modules/_multiprocessing/multiprocessing.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Modules/_multiprocessing/multiprocessing.c b/Modules/_multiprocessing/multiprocessing.c
+index 806e638..d7954d1 100644
+--- a/Modules/_multiprocessing/multiprocessing.c
++++ b/Modules/_multiprocessing/multiprocessing.c
+@@ -128,7 +128,7 @@ static PyMethodDef module_methods[] = {
+ {"recv", multiprocessing_recv, METH_VARARGS, ""},
+ {"send", multiprocessing_send, METH_VARARGS, ""},
+ #endif
+-#if !defined(POSIX_SEMAPHORES_NOT_ENABLED) && !defined(__ANDROID__)
++#if defined(MS_WINDOWS) || (!defined(POSIX_SEMAPHORES_NOT_ENABLED) && !defined(__ANDROID__))
+ {"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""},
+ #endif
+ {NULL}
+--
+2.33.0
+