mirror of https://github.com/python/cpython
Patch #650415: Avoid redefinition of macros.
This commit is contained in:
parent
cf8f47ea95
commit
b023381466
|
@ -79,14 +79,26 @@
|
|||
/* set default attribute object for different versions */
|
||||
|
||||
#if defined(PY_PTHREAD_D4) || defined(PY_PTHREAD_D7)
|
||||
#if !defined(pthread_attr_default)
|
||||
# define pthread_attr_default pthread_attr_default
|
||||
#endif
|
||||
#if !defined(pthread_mutexattr_default)
|
||||
# define pthread_mutexattr_default pthread_mutexattr_default
|
||||
#endif
|
||||
#if !defined(pthread_condattr_default)
|
||||
# define pthread_condattr_default pthread_condattr_default
|
||||
#endif
|
||||
#elif defined(PY_PTHREAD_STD) || defined(PY_PTHREAD_D6)
|
||||
#if !defined(pthread_attr_default)
|
||||
# define pthread_attr_default ((pthread_attr_t *)NULL)
|
||||
#endif
|
||||
#if !defined(pthread_mutexattr_default)
|
||||
# define pthread_mutexattr_default ((pthread_mutexattr_t *)NULL)
|
||||
#endif
|
||||
#if !defined(pthread_condattr_default)
|
||||
# define pthread_condattr_default ((pthread_condattr_t *)NULL)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
/* Whether or not to use semaphores directly rather than emulating them with
|
||||
|
|
Loading…
Reference in New Issue