| 382 | #define Py_tss_NEEDS_INIT 0 |
| 383 | typedef int Py_tss_t; |
| 384 | static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { |
| 385 | *key = PyThread_create_key(); |
| 386 | return 0; |
| 387 | } |
| 388 | static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { |
| 389 | Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); |
| 390 | *key = Py_tss_NEEDS_INIT; |
nothing calls this directly
no outgoing calls
no test coverage detected