summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-09 23:34:47 -0400
committerGravatar Lioncash2019-04-09 23:34:49 -0400
commit08d507a19687305d4209596c6a9f61bb17948064 (patch)
tree40edc390acccf482597ad31e61b21408f1a74bc0 /src
parentMerge pull request #2354 from lioncash/header (diff)
downloadyuzu-08d507a19687305d4209596c6a9f61bb17948064.tar.gz
yuzu-08d507a19687305d4209596c6a9f61bb17948064.tar.xz
yuzu-08d507a19687305d4209596c6a9f61bb17948064.zip
kernel/server_session: Remove obsolete TODOs
These are holdovers from Citra.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/server_session.cpp9
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() {
28 // the emulated application. 28 // the emulated application.
29 29
30 // Decrease the port's connection count. 30 // Decrease the port's connection count.
31 if (parent->port) 31 if (parent->port) {
32 parent->port->ConnectionClosed(); 32 parent->port->ConnectionClosed();
33 33 }
34 // TODO(Subv): Wake up all the ClientSession's waiting threads and set
35 // the SendSyncRequest result to 0xC920181A.
36 34
37 parent->server = nullptr; 35 parent->server = nullptr;
38} 36}
@@ -74,9 +72,6 @@ void ServerSession::ClientDisconnected() {
74 handler->ClientDisconnected(this); 72 handler->ClientDisconnected(this);
75 } 73 }
76 74
77 // TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set
78 // their WaitSynchronization result to 0xC920181A.
79
80 // Clean up the list of client threads with pending requests, they are unneeded now that the 75 // Clean up the list of client threads with pending requests, they are unneeded now that the
81 // client endpoint is closed. 76 // client endpoint is closed.
82 pending_requesting_threads.clear(); 77 pending_requesting_threads.clear();