summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index d228e3523..c0abfd711 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -95,7 +95,8 @@ static void GetServiceHandle(Service::Interface* self) {
auto client_session = std::get<Kernel::SharedPtr<Kernel::ClientSession>>(sessions);
auto server_session = std::get<Kernel::SharedPtr<Kernel::ServerSession>>(sessions);
- // TODO(Subv): Wait the current thread until the ServerPort calls AcceptSession.
+ // Note: Threads do not wait for the server endpoint to call
+ // AcceptSession before returning from this call.
// Add the server session to the port's queue
client_port->AddWaitingSession(server_session);