Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
db57e8d1
Commit
db57e8d1
authored
Jul 21, 2011
by
Charles-François Natali
Browse files
Options
Browse Files
Download
Plain Diff
Merge - Issue #12372: POSIX semaphores are broken on AIX: don't use them.
parents
a30def6c
996f6067
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
11 deletions
+6
-11
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+2
-6
configure.in
configure.in
+2
-5
No files found.
Misc/NEWS
View file @
db57e8d1
...
@@ -234,6 +234,8 @@ Core and Builtins
...
@@ -234,6 +234,8 @@ Core and Builtins
Library
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
-
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
to
get
channel
binding
data
for
the
current
SSL
session
(
only
the
"tls-unique"
channel
binding
is
implemented
).
This
allows
the
implementation
"tls-unique"
channel
binding
is
implemented
).
This
allows
the
implementation
...
...
configure
View file @
db57e8d1
...
@@ -8800,11 +8800,7 @@ $as_echo "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
...
@@ -8800,11 +8800,7 @@ $as_echo "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
$as_echo
"#define HAVE_BROKEN_POSIX_SEMAPHORES 1"
>>
confdefs.h
$as_echo
"#define HAVE_BROKEN_POSIX_SEMAPHORES 1"
>>
confdefs.h
;;
;;
AIX/5
)
AIX/
*
)
$as_echo
"#define HAVE_BROKEN_POSIX_SEMAPHORES 1"
>>
confdefs.h
;;
AIX/6
)
$as_echo
"#define HAVE_BROKEN_POSIX_SEMAPHORES 1"
>>
confdefs.h
$as_echo
"#define HAVE_BROKEN_POSIX_SEMAPHORES 1"
>>
confdefs.h
;;
;;
...
...
configure.in
View file @
db57e8d1
...
@@ -2190,12 +2190,9 @@ if test "$posix_threads" = "yes"; then
...
@@ -2190,12 +2190,9 @@ if test "$posix_threads" = "yes"; then
SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
[Define if the Posix semaphores do not work on your system])
[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])
[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
esac
AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment