hle: kernel: Migrate KClientPort to KAutoObject.

This commit is contained in:
bunnei
2021-04-21 21:43:25 -07:00
parent aa2844bcf9
commit 0297448fbc
18 changed files with 92 additions and 63 deletions

View File

@ -70,7 +70,7 @@ public:
return server;
}
const ClientPort* GetParent() const {
const KClientPort* GetParent() const {
return port;
}
@ -99,7 +99,7 @@ private:
KClientSession client;
std::atomic<std::underlying_type<State>::type> atomic_state{
static_cast<std::underlying_type<State>::type>(State::Invalid)};
ClientPort* port{};
KClientPort* port{};
std::string name;
Process* process{};
bool initialized{};