MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / PyThread_tss_delete

Function PyThread_tss_delete

eval/CIPO_evaluation/pycocotools/_mask.c:399–402  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397 return *key != Py_tss_NEEDS_INIT;
398}
399static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) {
400 PyThread_delete_key(*key);
401 *key = Py_tss_NEEDS_INIT;
402}
403static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) {
404 return PyThread_set_key_value(*key, value);
405}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected