Kernel Loader: Difference between revisions

Line 446: Line 446:


This is just standard aarch64 page table code. Walks the page table, verifying that all entries it would map for size + range are free.
This is just standard aarch64 page table code. Walks the page table, verifying that all entries it would map for size + range are free.
== KInitialPageTable::GetL1Table ==
This is an inferred getter for a (presumably) private member.
<pre>
    void *KInitialPageTable::GetL1Table() const {
        return this->l1_table_ptr;
    }
</pre>


= Structures =
= Structures =