| 822 | } |
| 823 | |
| 824 | static inline mi_page_flags_t mi_page_flags(const mi_page_t* page) { |
| 825 | return (mi_page_xthread_id(page) & MI_PAGE_FLAG_MASK); |
| 826 | } |
| 827 | |
| 828 | static inline bool mi_page_flags_set(mi_page_t* page, bool set, mi_page_flags_t newflag) { |
| 829 | mi_page_flags_t old; |
no test coverage detected