| 199 | } |
| 200 | |
| 201 | static void thread_once(void) |
| 202 | { |
| 203 | __tls_key = TlsAlloc(); |
| 204 | __fls_key = FlsAlloc(thread_exit); |
| 205 | __pkeys = (PROC_KEYS *) mem_calloc(1, sizeof(PROC_KEYS)); |
| 206 | __pkeys->keys = htable_create(10); |
| 207 | pthread_mutex_init(&__lock, NULL); |
| 208 | } |
| 209 | |
| 210 | void pthread_fkey_create(void) |
| 211 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…