mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
kern: note OnFinalize calls in KPageTable::Finalize
This commit is contained in:
parent
39a95d4023
commit
7b523cfc8d
1 changed files with 6 additions and 0 deletions
|
@ -236,9 +236,15 @@ namespace ams::kern::arch::arm64 {
|
||||||
/* Only process tables should be finalized. */
|
/* Only process tables should be finalized. */
|
||||||
MESOSPHERE_ASSERT(!this->IsKernel());
|
MESOSPHERE_ASSERT(!this->IsKernel());
|
||||||
|
|
||||||
|
/* NOTE: Here Nintendo calls an unknown OnFinalize function. */
|
||||||
|
/* this->OnFinalize(); */
|
||||||
|
|
||||||
/* Note that we've updated (to ensure we're synchronized). */
|
/* Note that we've updated (to ensure we're synchronized). */
|
||||||
this->NoteUpdated();
|
this->NoteUpdated();
|
||||||
|
|
||||||
|
/* NOTE: Here Nintendo calls a second unknown OnFinalize function. */
|
||||||
|
/* this->OnFinalize2(); */
|
||||||
|
|
||||||
/* Free all pages in the table. */
|
/* Free all pages in the table. */
|
||||||
{
|
{
|
||||||
/* Get implementation objects. */
|
/* Get implementation objects. */
|
||||||
|
|
Loading…
Reference in a new issue