summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar bunnei2020-12-30 23:01:08 -0800
committerGravatar bunnei2021-01-28 21:42:25 -0800
commitc0d3aef28c0a0c68c18de30228f29e30f0e52533 (patch)
tree2f94a5f6e5fec4d288272f9a476ee85a8da3d0ac /src/core/hle/kernel/kernel.h
parentMerge pull request #5837 from german77/socketstub (diff)
downloadyuzu-c0d3aef28c0a0c68c18de30228f29e30f0e52533.tar.gz
yuzu-c0d3aef28c0a0c68c18de30228f29e30f0e52533.tar.xz
yuzu-c0d3aef28c0a0c68c18de30228f29e30f0e52533.zip
core: hle: kernel: Rename Thread to KThread.
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 933d9a7d6..41c553582 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -43,7 +43,7 @@ class KScheduler;
43class SharedMemory; 43class SharedMemory;
44class ServiceThread; 44class ServiceThread;
45class Synchronization; 45class Synchronization;
46class Thread; 46class KThread;
47class TimeManager; 47class TimeManager;
48 48
49/// Represents a single instance of the kernel. 49/// Represents a single instance of the kernel.
@@ -84,7 +84,7 @@ public:
84 std::shared_ptr<ResourceLimit> GetSystemResourceLimit() const; 84 std::shared_ptr<ResourceLimit> GetSystemResourceLimit() const;
85 85
86 /// Retrieves a shared pointer to a Thread instance within the thread wakeup handle table. 86 /// Retrieves a shared pointer to a Thread instance within the thread wakeup handle table.
87 std::shared_ptr<Thread> RetrieveThreadFromGlobalHandleTable(Handle handle) const; 87 std::shared_ptr<KThread> RetrieveThreadFromGlobalHandleTable(Handle handle) const;
88 88
89 /// Adds the given shared pointer to an internal list of active processes. 89 /// Adds the given shared pointer to an internal list of active processes.
90 void AppendNewProcess(std::shared_ptr<Process> process); 90 void AppendNewProcess(std::shared_ptr<Process> process);
@@ -240,7 +240,7 @@ public:
240private: 240private:
241 friend class Object; 241 friend class Object;
242 friend class Process; 242 friend class Process;
243 friend class Thread; 243 friend class KThread;
244 244
245 /// Creates a new object ID, incrementing the internal object ID counter. 245 /// Creates a new object ID, incrementing the internal object ID counter.
246 u32 CreateNewObjectID(); 246 u32 CreateNewObjectID();