| 2019 | |
| 2020 | #ifdef PAGES_CAN_PURGE_FORCED |
| 2021 | static bool |
| 2022 | extent_purge_forced_default(extent_hooks_t *extent_hooks, void *addr, |
| 2023 | size_t size, size_t offset, size_t length, unsigned arena_ind) { |
| 2024 | assert(addr != NULL); |
| 2025 | assert((offset & PAGE_MASK) == 0); |
| 2026 | assert(length != 0); |
| 2027 | assert((length & PAGE_MASK) == 0); |
| 2028 | |
| 2029 | return pages_purge_forced((void *)((uintptr_t)addr + |
| 2030 | (uintptr_t)offset), length); |
| 2031 | } |
| 2032 | #endif |
| 2033 | |
| 2034 | static bool |
nothing calls this directly
no test coverage detected