summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-31 21:50:12 -0400
committerGravatar GitHub2018-08-31 21:50:12 -0400
commit1c05c06e048c0471653275dcb00f391acbfd6324 (patch)
tree8eda46d4aac083d23a52223e1a3fc46bc6690a6c /src/core/hle/kernel/thread.cpp
parentMerge pull request #1205 from bunnei/improve-rasterizer-cache-2 (diff)
parentcore/core: Replace includes with forward declarations where applicable (diff)
downloadyuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.gz
yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.tar.xz
yuzu-1c05c06e048c0471653275dcb00f391acbfd6324.zip
Merge pull request #1212 from lioncash/forward-decl
core/core: Replace includes with forward declarations where applicable
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 520ea0853..3d10d9af2 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -16,6 +16,7 @@
16#include "common/thread_queue_list.h" 16#include "common/thread_queue_list.h"
17#include "core/arm/arm_interface.h" 17#include "core/arm/arm_interface.h"
18#include "core/core.h" 18#include "core/core.h"
19#include "core/core_cpu.h"
19#include "core/core_timing.h" 20#include "core/core_timing.h"
20#include "core/core_timing_util.h" 21#include "core/core_timing_util.h"
21#include "core/hle/kernel/errors.h" 22#include "core/hle/kernel/errors.h"
@@ -23,8 +24,8 @@
23#include "core/hle/kernel/kernel.h" 24#include "core/hle/kernel/kernel.h"
24#include "core/hle/kernel/object.h" 25#include "core/hle/kernel/object.h"
25#include "core/hle/kernel/process.h" 26#include "core/hle/kernel/process.h"
27#include "core/hle/kernel/scheduler.h"
26#include "core/hle/kernel/thread.h" 28#include "core/hle/kernel/thread.h"
27#include "core/hle/lock.h"
28#include "core/hle/result.h" 29#include "core/hle/result.h"
29#include "core/memory.h" 30#include "core/memory.h"
30 31