| 527 | } |
| 528 | |
| 529 | static void |
| 530 | background_thread_init(tsd_t *tsd, background_thread_info_t *info) { |
| 531 | malloc_mutex_assert_owner(tsd_tsdn(tsd), &background_thread_lock); |
| 532 | info->state = background_thread_started; |
| 533 | background_thread_info_init(tsd_tsdn(tsd), info); |
| 534 | n_background_threads++; |
| 535 | } |
| 536 | |
| 537 | static bool |
| 538 | background_thread_create_locked(tsd_t *tsd, unsigned arena_ind) { |
no test coverage detected