mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.
This commit is contained in:
commit
1a1a06ee36
3 changed files with 7 additions and 0 deletions
|
@ -334,6 +334,7 @@ Maxim Dzumanenko
|
||||||
Walter Dörwald
|
Walter Dörwald
|
||||||
Hans Eckardt
|
Hans Eckardt
|
||||||
Rodolpho Eckhardt
|
Rodolpho Eckhardt
|
||||||
|
David Edelsohn
|
||||||
John Edmonds
|
John Edmonds
|
||||||
Grant Edwards
|
Grant Edwards
|
||||||
John Ehresman
|
John Ehresman
|
||||||
|
|
|
@ -537,6 +537,9 @@ IDLE
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #18256: Compilation fix for recent AIX releases. Patch by
|
||||||
|
David Edelsohn.
|
||||||
|
|
||||||
- Issue #17547: In configure, explicitly pass -Wformat for the benefit for GCC
|
- Issue #17547: In configure, explicitly pass -Wformat for the benefit for GCC
|
||||||
4.8.
|
4.8.
|
||||||
|
|
||||||
|
|
|
@ -170,6 +170,7 @@ static void
|
||||||
PyThread__init_thread(void)
|
PyThread__init_thread(void)
|
||||||
{
|
{
|
||||||
#if defined(_AIX) && defined(__GNUC__)
|
#if defined(_AIX) && defined(__GNUC__)
|
||||||
|
extern void pthread_init(void);
|
||||||
pthread_init();
|
pthread_init();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -444,6 +445,7 @@ PyThread_free_lock(PyThread_type_lock lock)
|
||||||
pthread_lock *thelock = (pthread_lock *)lock;
|
pthread_lock *thelock = (pthread_lock *)lock;
|
||||||
int status, error = 0;
|
int status, error = 0;
|
||||||
|
|
||||||
|
(void) error; /* silence unused-but-set-variable warning */
|
||||||
dprintf(("PyThread_free_lock(%p) called\n", lock));
|
dprintf(("PyThread_free_lock(%p) called\n", lock));
|
||||||
|
|
||||||
/* some pthread-like implementations tie the mutex to the cond
|
/* some pthread-like implementations tie the mutex to the cond
|
||||||
|
@ -530,6 +532,7 @@ PyThread_release_lock(PyThread_type_lock lock)
|
||||||
pthread_lock *thelock = (pthread_lock *)lock;
|
pthread_lock *thelock = (pthread_lock *)lock;
|
||||||
int status, error = 0;
|
int status, error = 0;
|
||||||
|
|
||||||
|
(void) error; /* silence unused-but-set-variable warning */
|
||||||
dprintf(("PyThread_release_lock(%p) called\n", lock));
|
dprintf(("PyThread_release_lock(%p) called\n", lock));
|
||||||
|
|
||||||
status = pthread_mutex_lock( &thelock->mut );
|
status = pthread_mutex_lock( &thelock->mut );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue