diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-09 23:34:47 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-09 23:34:49 -0400 |
commit | 08d507a19687305d4209596c6a9f61bb17948064 (patch) | |
tree | 40edc390acccf482597ad31e61b21408f1a74bc0 /src | |
parent | 2598433f9ca5b1c03d7ed69d8a71a65c2ea0d40f (diff) |
kernel/server_session: Remove obsolete TODOs
These are holdovers from Citra.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/server_session.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/core/hle/kernel/server_session.cpp b/src/core/hle/kernel/server_session.cpp index a6b2cf06a..696a82cd9 100644 --- a/src/core/hle/kernel/server_session.cpp +++ b/src/core/hle/kernel/server_session.cpp @@ -28,11 +28,9 @@ ServerSession::~ServerSession() { // the emulated application. // Decrease the port's connection count. - if (parent->port) + if (parent->port) { parent->port->ConnectionClosed(); - - // TODO(Subv): Wake up all the ClientSession's waiting threads and set - // the SendSyncRequest result to 0xC920181A. + } parent->server = nullptr; } @@ -74,9 +72,6 @@ void ServerSession::ClientDisconnected() { handler->ClientDisconnected(this); } - // TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set - // their WaitSynchronization result to 0xC920181A. - // Clean up the list of client threads with pending requests, they are unneeded now that the // client endpoint is closed. pending_requesting_threads.clear(); |