mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Merge - Issue #12372: POSIX semaphores are broken on AIX: don't use them.
This commit is contained in:
commit
db57e8d186
3 changed files with 6 additions and 11 deletions
|
@ -234,6 +234,8 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #12372: POSIX semaphores are broken on AIX: don't use them.
|
||||
|
||||
- Issue #12551: Provide a get_channel_binding() method on SSL sockets so as
|
||||
to get channel binding data for the current SSL session (only the
|
||||
"tls-unique" channel binding is implemented). This allows the implementation
|
||||
|
|
6
configure
vendored
6
configure
vendored
|
@ -8800,11 +8800,7 @@ $as_echo "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
|
|||
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
|
||||
|
||||
;;
|
||||
AIX/5)
|
||||
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
|
||||
|
||||
;;
|
||||
AIX/6)
|
||||
AIX/*)
|
||||
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
|
||||
|
||||
;;
|
||||
|
|
|
@ -2190,12 +2190,9 @@ if test "$posix_threads" = "yes"; then
|
|||
SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
|
||||
[Define if the Posix semaphores do not work on your system])
|
||||
;;
|
||||
AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
|
||||
AIX/*) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
|
||||
[Define if the Posix semaphores do not work on your system])
|
||||
;;
|
||||
AIX/6) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
|
||||
Define if the Posix semaphores do not work on your system)
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue