summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-29 16:45:42 -0700
committerGravatar Yuri Kunde Schlesner2017-05-29 17:34:39 -0700
commitbe031989ee9384786fb9ed380dab9a260ad69fd5 (patch)
tree875d7725802afed2849be9ca6947f129b0b60134 /src/core/hle/svc.cpp
parentKernel: Move WaitObject to a separate file (diff)
downloadyuzu-be031989ee9384786fb9ed380dab9a260ad69fd5.tar.gz
yuzu-be031989ee9384786fb9ed380dab9a260ad69fd5.tar.xz
yuzu-be031989ee9384786fb9ed380dab9a260ad69fd5.zip
Kernel: Move HandleTable to a separate file
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 83767677f..e68b9f16a 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -2,6 +2,7 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm>
5#include <cinttypes> 6#include <cinttypes>
6#include <map> 7#include <map>
7#include "common/logging/log.h" 8#include "common/logging/log.h"
@@ -16,6 +17,7 @@
16#include "core/hle/kernel/client_session.h" 17#include "core/hle/kernel/client_session.h"
17#include "core/hle/kernel/errors.h" 18#include "core/hle/kernel/errors.h"
18#include "core/hle/kernel/event.h" 19#include "core/hle/kernel/event.h"
20#include "core/hle/kernel/handle_table.h"
19#include "core/hle/kernel/memory.h" 21#include "core/hle/kernel/memory.h"
20#include "core/hle/kernel/mutex.h" 22#include "core/hle/kernel/mutex.h"
21#include "core/hle/kernel/process.h" 23#include "core/hle/kernel/process.h"