summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
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();