hle: Remove shared_page.h/.cpp

This is a holdover from citra that's essentially unused.
This commit is contained in:
Lioncash 2018-07-23 12:49:44 -04:00
parent 7138b99f21
commit 1f3889a290
6 changed files with 0 additions and 161 deletions

View file

@ -11,7 +11,6 @@
#include "core/hle/kernel/resource_limit.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/kernel/timer.h"
#include "core/hle/shared_page.h"
namespace Kernel {
@ -20,7 +19,6 @@ unsigned int Object::next_object_id;
/// Initialize the kernel
void Init(u32 system_mode) {
ConfigMem::Init();
SharedPage::Init();
Kernel::MemoryInit(system_mode);

View file

@ -15,7 +15,6 @@
#include "core/hle/kernel/memory.h"
#include "core/hle/kernel/vm_manager.h"
#include "core/hle/result.h"
#include "core/hle/shared_page.h"
#include "core/memory.h"
#include "core/memory_setup.h"

View file

@ -13,7 +13,6 @@
#include "core/hle/kernel/resource_limit.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/kernel/timer.h"
#include "core/hle/shared_page.h"
namespace Kernel {