diff options
| author | 2020-12-30 23:01:08 -0800 | |
|---|---|---|
| committer | 2021-01-28 21:42:25 -0800 | |
| commit | c0d3aef28c0a0c68c18de30228f29e30f0e52533 (patch) | |
| tree | 2f94a5f6e5fec4d288272f9a476ee85a8da3d0ac /src/core/hle/kernel/kernel.h | |
| parent | Merge pull request #5837 from german77/socketstub (diff) | |
| download | yuzu-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.h | 6 |
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; | |||
| 43 | class SharedMemory; | 43 | class SharedMemory; |
| 44 | class ServiceThread; | 44 | class ServiceThread; |
| 45 | class Synchronization; | 45 | class Synchronization; |
| 46 | class Thread; | 46 | class KThread; |
| 47 | class TimeManager; | 47 | class 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: | |||
| 240 | private: | 240 | private: |
| 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(); |