kernel: Remove unused object_address_table.cpp/.h

These source files were entirely unused throughout the rest of the
codebase. This also has the benefit of getting rid of a global variable
as well.
This commit is contained in:
Lioncash 2018-07-31 08:53:13 -04:00
parent bf9c62bc76
commit 369f6e58aa
6 changed files with 0 additions and 104 deletions

View file

@ -5,7 +5,6 @@
#include "core/hle/kernel/handle_table.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/memory.h"
#include "core/hle/kernel/object_address_table.h"
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/resource_limit.h"
#include "core/hle/kernel/thread.h"
@ -33,7 +32,6 @@ void Init(u32 system_mode) {
void Shutdown() {
// Free all kernel objects
g_handle_table.Clear();
g_object_address_table.Clear();
Kernel::ThreadingShutdown();