diff options
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 43e49603b..19b3530b4 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -29,7 +29,7 @@ struct EventType; | |||
| 29 | 29 | ||
| 30 | namespace Kernel { | 30 | namespace Kernel { |
| 31 | 31 | ||
| 32 | class ClientPort; | 32 | class KClientPort; |
| 33 | class GlobalSchedulerContext; | 33 | class GlobalSchedulerContext; |
| 34 | class HandleTable; | 34 | class HandleTable; |
| 35 | class KAutoObjectWithListContainer; | 35 | class KAutoObjectWithListContainer; |
| @@ -60,7 +60,7 @@ constexpr EmuThreadHandle EmuThreadHandleReserved{1ULL << 63}; | |||
| 60 | /// Represents a single instance of the kernel. | 60 | /// Represents a single instance of the kernel. |
| 61 | class KernelCore { | 61 | class KernelCore { |
| 62 | private: | 62 | private: |
| 63 | using NamedPortTable = std::unordered_map<std::string, std::shared_ptr<ClientPort>>; | 63 | using NamedPortTable = std::unordered_map<std::string, KClientPort*>; |
| 64 | 64 | ||
| 65 | public: | 65 | public: |
| 66 | /// Constructs an instance of the kernel using the given System | 66 | /// Constructs an instance of the kernel using the given System |
| @@ -168,7 +168,7 @@ public: | |||
| 168 | void InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size); | 168 | void InvalidateCpuInstructionCacheRange(VAddr addr, std::size_t size); |
| 169 | 169 | ||
| 170 | /// Adds a port to the named port table | 170 | /// Adds a port to the named port table |
| 171 | void AddNamedPort(std::string name, std::shared_ptr<ClientPort> port); | 171 | void AddNamedPort(std::string name, KClientPort* port); |
| 172 | 172 | ||
| 173 | /// Finds a port within the named port table with the given name. | 173 | /// Finds a port within the named port table with the given name. |
| 174 | NamedPortTable::iterator FindNamedPort(const std::string& name); | 174 | NamedPortTable::iterator FindNamedPort(const std::string& name); |