| 565 | } |
| 566 | |
| 567 | static inline void mi_page_set_heap(mi_page_t* page, mi_heap_t* heap) { |
| 568 | mi_assert_internal(mi_page_thread_free_flag(page) != MI_DELAYED_FREEING); |
| 569 | mi_atomic_store_release(&page->xheap,(uintptr_t)heap); |
| 570 | } |
| 571 | |
| 572 | // Thread free flag helpers |
| 573 | static inline mi_block_t* mi_tf_block(mi_thread_free_t tf) { |
no test coverage detected