summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-01-01 17:36:53 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2013-01-01 17:36:53 (GMT)
commit9b4599322d66a177ca3a2c318b674aaac88d3c90 (patch)
tree7da3adebe64f74b9b1c1983d7bd43386e7b9e7bb /Modules/_multiprocessing
parentb829dea0cd8ca8f784d3064b8b4c1b744d3c7b70 (diff)
parent9866231eab8884022f41ee7bb96d3539ba8d53ea (diff)
downloadcpython-9b4599322d66a177ca3a2c318b674aaac88d3c90.zip
cpython-9b4599322d66a177ca3a2c318b674aaac88d3c90.tar.gz
cpython-9b4599322d66a177ca3a2c318b674aaac88d3c90.tar.bz2
Issue #9586: Merge
Diffstat (limited to 'Modules/_multiprocessing')
-rw-r--r--Modules/_multiprocessing/semaphore.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/_multiprocessing/semaphore.c b/Modules/_multiprocessing/semaphore.c
index 8ea92f2..2c2b020 100644
--- a/Modules/_multiprocessing/semaphore.c
+++ b/Modules/_multiprocessing/semaphore.c
@@ -186,6 +186,13 @@ semlock_release(SemLockObject *self, PyObject *args)
#define SEM_GETVALUE(sem, pval) sem_getvalue(sem, pval)
#define SEM_UNLINK(name) sem_unlink(name)
+/* OS X 10.4 defines SEM_FAILED as -1 instead of (sem_t *)-1; this gives
+ compiler warnings, and (potentially) undefined behaviour. */
+#ifdef __APPLE__
+# undef SEM_FAILED
+# define SEM_FAILED ((sem_t *)-1)
+#endif
+
#ifndef HAVE_SEM_UNLINK
# define sem_unlink(name) 0
#endif