diff options
Diffstat (limited to 'runtime/mem_map.h')
| -rw-r--r-- | runtime/mem_map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/mem_map.h b/runtime/mem_map.h index 597f0d46e1..049ae12acf 100644 --- a/runtime/mem_map.h +++ b/runtime/mem_map.h @@ -241,9 +241,13 @@ class MemMap { friend class MemMapTest; // To allow access to base_begin_ and base_size_. }; + std::ostream& operator<<(std::ostream& os, const MemMap& mem_map); std::ostream& operator<<(std::ostream& os, const MemMap::Maps& mem_maps); +// Zero and release pages if possible, no requirements on alignments. +void ZeroAndReleasePages(void* address, size_t length); + } // namespace art #endif // ART_RUNTIME_MEM_MAP_H_ |