mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
Don't use Posix semaphores on Solaris 8. Fixes #662787.
This commit is contained in:
parent
2da75faa87
commit
dfc33fd8db
4 changed files with 20 additions and 2 deletions
|
@ -104,7 +104,7 @@
|
|||
/* Whether or not to use semaphores directly rather than emulating them with
|
||||
* mutexes and condition variables:
|
||||
*/
|
||||
#ifdef _POSIX_SEMAPHORES
|
||||
#if defined(_POSIX_SEMAPHORES) && !defined(HAVE_BROKEN_POSIX_SEMAPHORES)
|
||||
# define USE_SEMAPHORES
|
||||
#else
|
||||
# undef USE_SEMAPHORES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue