mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 23:45:46 +00:00
hle: kernel: Migrate KClientPort to KAutoObject.
This commit is contained in:
parent
944eb14d69
commit
9f1abd8188
18 changed files with 92 additions and 63 deletions
|
@ -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{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue