| 392 | } |
| 393 | |
| 394 | bool |
| 395 | tsd_tcache_enabled_data_init(tsd_t *tsd) { |
| 396 | /* Called upon tsd initialization. */ |
| 397 | tsd_tcache_enabled_set(tsd, opt_tcache); |
| 398 | tsd_slow_update(tsd); |
| 399 | |
| 400 | if (opt_tcache) { |
| 401 | /* Trigger tcache init. */ |
| 402 | tsd_tcache_data_init(tsd); |
| 403 | } |
| 404 | |
| 405 | return false; |
| 406 | } |
| 407 | |
| 408 | /* Initialize auto tcache (embedded in TSD). */ |
| 409 | static void |
no test coverage detected