summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2009-07-02 14:37:32 (GMT)
committerJesus Cea <jcea@jcea.es>2009-07-02 14:37:32 (GMT)
commit7dfed63bcd76fc13838e205d0e3d04258f9fd372 (patch)
tree7b469e84a9a23d52a7434986814b0fcee3f20894 /Modules
parentcf69fbb077160f43b94b43d84cda0f458c6a1967 (diff)
downloadcpython-7dfed63bcd76fc13838e205d0e3d04258f9fd372.zip
cpython-7dfed63bcd76fc13838e205d0e3d04258f9fd372.tar.gz
cpython-7dfed63bcd76fc13838e205d0e3d04258f9fd372.tar.bz2
Merged revisions 73768 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r73768 | jesus.cea | 2009-07-02 16:35:02 +0200 (Thu, 02 Jul 2009) | 9 lines Merged revisions 73767 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r73767 | jesus.cea | 2009-07-02 16:30:18 +0200 (Thu, 02 Jul 2009) | 1 line multiprocessing doesn't compile in Solaris because a typo ........ ................
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_multiprocessing/multiprocessing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_multiprocessing/multiprocessing.h b/Modules/_multiprocessing/multiprocessing.h
index f8750d2..7a79d6e 100644
--- a/Modules/_multiprocessing/multiprocessing.h
+++ b/Modules/_multiprocessing/multiprocessing.h
@@ -49,7 +49,7 @@
# define SEM_VALUE_MAX sysconf(_SC_SEM_VALUE_MAX)
#elif defined(_SEM_VALUE_MAX)
# define SEM_VALUE_MAX _SEM_VALUE_MAX
- #elif definef(_POSIX_SEM_VALUE_MAX)
+ #elif defined(_POSIX_SEM_VALUE_MAX)
# define SEM_VALUE_MAX _POSIX_SEM_VALUE_MAX
#else
# define SEM_VALUE_MAX INT_MAX