| 750 | } |
| 751 | |
| 752 | void |
| 753 | background_thread_postfork_parent(tsdn_t *tsdn) { |
| 754 | for (unsigned i = 0; i < max_background_threads; i++) { |
| 755 | malloc_mutex_postfork_parent(tsdn, |
| 756 | &background_thread_info[i].mtx); |
| 757 | } |
| 758 | malloc_mutex_postfork_parent(tsdn, &background_thread_lock); |
| 759 | } |
| 760 | |
| 761 | void |
| 762 | background_thread_postfork_child(tsdn_t *tsdn) { |
no test coverage detected