diff options
Diffstat (limited to 'runtime/gc/allocator/rosalloc.h')
-rw-r--r-- | runtime/gc/allocator/rosalloc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/gc/allocator/rosalloc.h b/runtime/gc/allocator/rosalloc.h index a2f8342fd8..2a0bf10d90 100644 --- a/runtime/gc/allocator/rosalloc.h +++ b/runtime/gc/allocator/rosalloc.h @@ -616,6 +616,10 @@ class RosAlloc { }; std::ostream& operator<<(std::ostream& os, const RosAlloc::PageMapKind& rhs); +// Callback from rosalloc when it needs to increase the footprint. Must be implemented somewhere +// else (currently rosalloc_space.cc). +void* ArtRosAllocMoreCore(allocator::RosAlloc* rosalloc, intptr_t increment); + } // namespace allocator } // namespace gc } // namespace art |