| 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; |
| 391 | return key; |
| 392 | } |
| 393 | static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { |
| 394 | PyObject_Free(key); |
| 395 | } |
nothing calls this directly
no outgoing calls
no test coverage detected