| 390 | // (and used with MI_TLS_PTHREADS for the default heap) |
| 391 | pthread_key_t _mi_heap_default_key = (pthread_key_t)(-1); |
| 392 | static void mi_pthread_done(void* value) { |
| 393 | if (value!=NULL) _mi_thread_done((mi_heap_t*)value); |
| 394 | } |
| 395 | #elif defined(__wasi__) |
| 396 | // no pthreads in the WebAssembly Standard Interface |
| 397 | #else |
nothing calls this directly
no test coverage detected