[Python-checkins] r73768 - in python/branches/py3k: Modules/_multiprocessing/multiprocessing.h
jesus.cea
python-checkins at python.org
Thu Jul 2 16:35:02 CEST 2009
Author: jesus.cea
Date: Thu Jul 2 16:35:02 2009
New Revision: 73768
Log:
Merged revisions 73767 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73767 | jesus.cea | 2009年07月02日 16:30:18 +0200 (2009年7月02日) | 1 line
multiprocessing doesn't compile in Solaris because a typo
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Modules/_multiprocessing/multiprocessing.h
Modified: python/branches/py3k/Modules/_multiprocessing/multiprocessing.h
==============================================================================
--- python/branches/py3k/Modules/_multiprocessing/multiprocessing.h (original)
+++ python/branches/py3k/Modules/_multiprocessing/multiprocessing.h Thu Jul 2 16:35:02 2009
@@ -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
More information about the Python-checkins
mailing list