summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-02-22 10:27:40 -0400
committerGravatar FernandoS272020-02-22 11:18:07 -0400
commitd219a96cc828d17932beebead209ba696b92a911 (patch)
tree1e973969f39a1901650626699117f93a4d731755 /src/core/hle/kernel/kernel.h
parentKernel: Implement Scheduler locks (diff)
downloadyuzu-d219a96cc828d17932beebead209ba696b92a911.tar.gz
yuzu-d219a96cc828d17932beebead209ba696b92a911.tar.xz
yuzu-d219a96cc828d17932beebead209ba696b92a911.zip
Kernel: Address Feedback.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 76fd12ace..c4f78ab71 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -8,10 +8,10 @@
8#include <string> 8#include <string>
9#include <unordered_map> 9#include <unordered_map>
10#include <vector> 10#include <vector>
11#include "core/hardware_properties.h"
12#include "core/hle/kernel/object.h" 11#include "core/hle/kernel/object.h"
13 12
14namespace Core { 13namespace Core {
14struct EmuThreadHandle;
15class ExclusiveMonitor; 15class ExclusiveMonitor;
16class System; 16class System;
17} // namespace Core 17} // namespace Core
@@ -136,10 +136,10 @@ public:
136 bool IsValidNamedPort(NamedPortTable::const_iterator port) const; 136 bool IsValidNamedPort(NamedPortTable::const_iterator port) const;
137 137
138 /// Gets the current host_thread/guest_thread handle. 138 /// Gets the current host_thread/guest_thread handle.
139 Core::EmuThreadHandle GetCurrentEmuThreadId() const; 139 Core::EmuThreadHandle GetCurrentEmuThreadID() const;
140 140
141 /// Gets the current host_thread handle. 141 /// Gets the current host_thread handle.
142 u32 GetCurrentHostThreadId() const; 142 u32 GetCurrentHostThreadID() const;
143 143
144 /// Register the current thread as a CPU Core Thread. 144 /// Register the current thread as a CPU Core Thread.
145 void RegisterCoreThread(std::size_t core_id); 145 void RegisterCoreThread(std::size_t core_id);