]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
authorVictor Stinner <vstinner@python.org>
Wed, 25 Mar 2020 20:23:53 +0000 (21:23 +0100)
committerGitHub <noreply@github.com>
Wed, 25 Mar 2020 20:23:53 +0000 (21:23 +0100)
Add PyThreadState_GetID() function: get the unique identifier of a
Python thread state.

Doc/c-api/init.rst
Doc/whatsnew/3.9.rst
Include/pystate.h
Misc/NEWS.d/next/C API/2020-03-25-19-44-55.bpo-39947.2OxvPt.rst [new file with mode: 0644]
Modules/_asynciomodule.c
Python/pystate.c

index 294c1b9f723390f2d93e7e5dc628ed1a185d77d1..f78ab99d5b360c99a02c4371a0a34d5938bb337f 100644 (file)
@@ -1084,6 +1084,15 @@ All of the following functions must be called after :c:func:`Py_Initialize`.
    .. versionadded:: 3.9
 
 
+.. c:function:: uint64_t PyThreadState_GetID(PyThreadState *tstate)
+
+   Get the unique thread state identifier of the Python thread state *tstate*.
+
+   *tstate* must not be ``NULL``.
+
+   .. versionadded:: 3.9
+
+
 .. c:function:: PyInterpreterState* PyThreadState_GetInterpreter(PyThreadState *tstate)
 
    Get the interpreter of the Python thread state *tstate*.
index b11c29bdf090fa444e538653aed489e19c3367f3..778e443f8d07771883d021a24b7c7a39b8ba046e 100644 (file)
@@ -429,6 +429,8 @@ Build and C API Changes
   :c:func:`PyInterpreterState_Get` functions to get the interpreter.
   New :c:func:`PyThreadState_GetFrame` function to get the current frame of a
   Python thread state.
+  New :c:func:`PyThreadState_GetID` function: get the unique identifier of a
+  Python thread state.
   (Contributed by Victor Stinner in :issue:`39947`.)
 
 * Add ``--with-platlibdir`` option to the ``configure`` script: name of the
index 5866fef3d095259c3235e983a219ae5338d230e1..c46d3fef15d776fa58f90191975f8b9e305f3d85 100644 (file)
@@ -91,6 +91,7 @@ PyAPI_FUNC(int) PyThreadState_SetAsyncExc(unsigned long, PyObject *);
 /* New in 3.9 */
 PyAPI_FUNC(PyInterpreterState*) PyThreadState_GetInterpreter(PyThreadState *tstate);
 PyAPI_FUNC(struct _frame*) PyThreadState_GetFrame(PyThreadState *tstate);
+PyAPI_FUNC(uint64_t) PyThreadState_GetID(PyThreadState *tstate);
 #endif
 
 typedef
diff --git a/Misc/NEWS.d/next/C API/2020-03-25-19-44-55.bpo-39947.2OxvPt.rst b/Misc/NEWS.d/next/C API/2020-03-25-19-44-55.bpo-39947.2OxvPt.rst
new file mode 100644 (file)
index 0000000..e9910a5
--- /dev/null
@@ -0,0 +1,2 @@
+Add :c:func:`PyThreadState_GetID` function: get the unique identifier of a
+Python thread state.
index 1092b08411474e15416a8352cb2c56a07787c97d..c10866aba7ce3aa83507a97aaee656d0f432501e 100644 (file)
@@ -231,7 +231,8 @@ get_running_loop(PyObject **loop)
     PyObject *rl;
 
     PyThreadState *ts = PyThreadState_Get();
-    if (ts->id == cached_running_holder_tsid && cached_running_holder != NULL) {
+    uint64_t ts_id = PyThreadState_GetID(ts);
+    if (ts_id == cached_running_holder_tsid && cached_running_holder != NULL) {
         // Fast path, check the cache.
         rl = cached_running_holder;  // borrowed
     }
@@ -253,7 +254,7 @@ get_running_loop(PyObject **loop)
         }
 
         cached_running_holder = rl;  // borrowed
-        cached_running_holder_tsid = ts->id;
+        cached_running_holder_tsid = ts_id;
     }
 
     assert(Py_IS_TYPE(rl, &PyRunningLoopHolder_Type));
index 66a1d3b492d4bb11184da763795d254c9b80b1f3..246665b2810b59ab8c3190890387588ec471bbef 100644 (file)
@@ -1021,6 +1021,14 @@ PyThreadState_GetFrame(PyThreadState *tstate)
 }
 
 
+uint64_t
+PyThreadState_GetID(PyThreadState *tstate)
+{
+    assert(tstate != NULL);
+    return tstate->id;
+}
+
+
 /* Asynchronously raise an exception in a thread.
    Requested by Just van Rossum and Alex Martelli.
    To prevent naive misuse, you must write your own extension