mirror of
https://github.com/python/cpython.git
synced 2025-10-02 21:25:24 +00:00
Add PyThread_tss_* to Doc/data/refcounts.dat. (GH-7038)
Thread Specific Storage (TSS) API is a public C API (new in 3.7).
(cherry picked from commit 55bfe690d5
)
Co-authored-by: Masayuki Yamamoto <ma3yuki.8mamo10@gmail.com>
This commit is contained in:
parent
e1a78cacf6
commit
3718f92e16
1 changed files with 21 additions and 0 deletions
|
@ -1383,6 +1383,27 @@ PyThreadState_New:PyInterpreterState*:interp::
|
||||||
PyThreadState_Swap:PyThreadState*:::
|
PyThreadState_Swap:PyThreadState*:::
|
||||||
PyThreadState_Swap:PyThreadState*:tstate::
|
PyThreadState_Swap:PyThreadState*:tstate::
|
||||||
|
|
||||||
|
PyThread_tss_alloc:Py_tss_t*:::
|
||||||
|
|
||||||
|
PyThread_tss_create:int:::
|
||||||
|
PyThread_tss_create:Py_tss_t*:key::
|
||||||
|
|
||||||
|
PyThread_tss_delete:void:::
|
||||||
|
PyThread_tss_delete:Py_tss_t*:key::
|
||||||
|
|
||||||
|
PyThread_tss_free:void:::
|
||||||
|
PyThread_tss_free:Py_tss_t*:key::
|
||||||
|
|
||||||
|
PyThread_tss_get:void*:::
|
||||||
|
PyThread_tss_get:Py_tss_t*:key::
|
||||||
|
|
||||||
|
PyThread_tss_is_created:int:::
|
||||||
|
PyThread_tss_is_created:Py_tss_t*:key::
|
||||||
|
|
||||||
|
PyThread_tss_set:int:::
|
||||||
|
PyThread_tss_set:Py_tss_t*:key::
|
||||||
|
PyThread_tss_set:void*:value::
|
||||||
|
|
||||||
PyTime_FromTime:PyObject*::+1:
|
PyTime_FromTime:PyObject*::+1:
|
||||||
PyTime_FromTime:int:hour::
|
PyTime_FromTime:int:hour::
|
||||||
PyTime_FromTime:int:minute::
|
PyTime_FromTime:int:minute::
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue