mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2
This commit is contained in:
parent
3eb2347c8c
commit
736e7fc0f6
14 changed files with 8 additions and 174 deletions
|
@ -69,9 +69,8 @@ long PyThread_get_thread_ident(void)
|
|||
volatile pth_t threadid;
|
||||
if (!initialized)
|
||||
PyThread_init_thread();
|
||||
/* Jump through some hoops for Alpha OSF/1 */
|
||||
threadid = pth_self();
|
||||
return (long) *(long *) &threadid;
|
||||
return (long) threadid;
|
||||
}
|
||||
|
||||
void PyThread_exit_thread(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue