Lines Matching refs:Py_tss_t
1435 CPython interpreter. This API uses a new type :c:type:`Py_tss_t` instead of
1443 .. c:type:: Py_tss_t
1456 This macro expands to the initializer for :c:type:`Py_tss_t` variables.
1463 Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules
1468 .. c:function:: Py_tss_t* PyThread_tss_alloc()
1475 .. c:function:: void PyThread_tss_free(Py_tss_t *key)
1492 undefined if the given :c:type:`Py_tss_t` has not been initialized by
1496 .. c:function:: int PyThread_tss_is_created(Py_tss_t *key)
1498 Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized
1502 .. c:function:: int PyThread_tss_create(Py_tss_t *key)
1511 .. c:function:: void PyThread_tss_delete(Py_tss_t *key)
1520 .. c:function:: int PyThread_tss_set(Py_tss_t *key, void *value)
1527 .. c:function:: void* PyThread_tss_get(Py_tss_t *key)