mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 17:25:46 +00:00
Threads do not wait for the server endpoint to call AcceptSession before returning from a ConnectToPort or GetServiceHandle call.
This commit is contained in:
parent
4c4f50dfaf
commit
811d684274
2 changed files with 5 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue