summaryrefslogtreecommitdiffstats
path: root/Include/pythread.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-05-21 10:44:57 (GMT)
committerGitHub <noreply@github.com>2019-05-21 10:44:57 (GMT)
commitd12e75734d46ecde588c5de65e6d64146911d20c (patch)
treef2faae7d94731b96d70d2a5cb703b3744faffa0c /Include/pythread.h
parent925af1d99b69bf3e229411022ad840c5a0cfdcf8 (diff)
downloadcpython-d12e75734d46ecde588c5de65e6d64146911d20c.zip
cpython-d12e75734d46ecde588c5de65e6d64146911d20c.tar.gz
cpython-d12e75734d46ecde588c5de65e6d64146911d20c.tar.bz2
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)" (GH-13458)
This reverts commit 4959c33d2555b89b494c678d99be81a65ee864b0.
Diffstat (limited to 'Include/pythread.h')
-rw-r--r--Include/pythread.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pythread.h b/Include/pythread.h
index e083383..bc1d92c 100644
--- a/Include/pythread.h
+++ b/Include/pythread.h
@@ -25,7 +25,6 @@ PyAPI_FUNC(void) PyThread_init_thread(void);
PyAPI_FUNC(unsigned long) PyThread_start_new_thread(void (*)(void *), void *);
PyAPI_FUNC(void) _Py_NO_RETURN PyThread_exit_thread(void);
PyAPI_FUNC(unsigned long) PyThread_get_thread_ident(void);
-PyAPI_FUNC(unsigned long) PyThread_get_thread_native_id(void);
PyAPI_FUNC(PyThread_type_lock) PyThread_allocate_lock(void);
PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock);