For internal background threads use only. */
| 367 | |
| 368 | /* For internal background threads use only. */ |
| 369 | JEMALLOC_ALWAYS_INLINE tsd_t * |
| 370 | tsd_internal_fetch(void) { |
| 371 | tsd_t *tsd = tsd_fetch_min(); |
| 372 | /* Use reincarnated state to prevent full initialization. */ |
| 373 | tsd_state_set(tsd, tsd_state_reincarnated); |
| 374 | |
| 375 | return tsd; |
| 376 | } |
| 377 | |
| 378 | JEMALLOC_ALWAYS_INLINE tsd_t * |
| 379 | tsd_fetch(void) { |
no test coverage detected