diff options
| author | 2016-12-22 00:08:09 -0500 | |
|---|---|---|
| committer | 2016-12-22 00:27:49 -0500 | |
| commit | 8b1e269e5898ad0b6aadabee41fea777f0e62fdc (patch) | |
| tree | 74040972517faa02fa84a819c5a39fcad12a8953 /src/core/hle/kernel/thread.h | |
| parent | core: Replace "AppCore" nomenclature with just "CPU". (diff) | |
| download | yuzu-8b1e269e5898ad0b6aadabee41fea777f0e62fdc.tar.gz yuzu-8b1e269e5898ad0b6aadabee41fea777f0e62fdc.tar.xz yuzu-8b1e269e5898ad0b6aadabee41fea777f0e62fdc.zip | |
ThreadContext: Move from "core" to "arm_interface".
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 89acc12c1..c77ac644d 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include <boost/container/flat_map.hpp> | 10 | #include <boost/container/flat_map.hpp> |
| 11 | #include <boost/container/flat_set.hpp> | 11 | #include <boost/container/flat_set.hpp> |
| 12 | #include "common/common_types.h" | 12 | #include "common/common_types.h" |
| 13 | #include "core/arm/arm_interface.h" | ||
| 13 | #include "core/core.h" | 14 | #include "core/core.h" |
| 14 | #include "core/hle/kernel/kernel.h" | 15 | #include "core/hle/kernel/kernel.h" |
| 15 | #include "core/hle/result.h" | 16 | #include "core/hle/result.h" |
| @@ -157,7 +158,7 @@ public: | |||
| 157 | return !wait_objects.empty(); | 158 | return !wait_objects.empty(); |
| 158 | } | 159 | } |
| 159 | 160 | ||
| 160 | Core::ThreadContext context; | 161 | ARM_Interface::ThreadContext context; |
| 161 | 162 | ||
| 162 | u32 thread_id; | 163 | u32 thread_id; |
| 163 | 164 | ||