kern: implement KUnsafeMemory

This commit is contained in:
Michael Scire 2020-04-26 02:35:10 -07:00
parent 7bc0250cea
commit 970b85bf9a
4 changed files with 86 additions and 0 deletions

View file

@ -27,6 +27,7 @@ namespace ams::kern {
KBlockInfoManager Kernel::s_block_info_manager;
KSupervisorPageTable Kernel::s_supervisor_page_table;
KSynchronization Kernel::s_synchronization;
KUnsafeMemory Kernel::s_unsafe_memory;
KWorkerTaskManager Kernel::s_worker_task_managers[KWorkerTaskManager::WorkerType_Count];
namespace {