kern: update KPageTable::Unmap block closing logic

This commit is contained in:
Michael Scire 2021-09-17 16:54:49 -07:00 committed by SciresM
parent 8b49cea4a9
commit 4c73c461f1
3 changed files with 20 additions and 3 deletions

View file

@ -86,6 +86,7 @@ namespace ams::kern {
explicit KPageGroup(KBlockInfoManager *m) : m_block_list(), m_manager(m) { /* ... */ }
~KPageGroup() { this->Finalize(); }
void CloseAndReset();
void Finalize();
iterator begin() const { return m_block_list.begin(); }