Kernel/ServerSession: Keep track of which threads have issued sync requests.

This commit is contained in:
Subv
2017-06-20 17:33:28 -05:00
parent ac168eeb5d
commit 8feeb81af2
3 changed files with 29 additions and 9 deletions

View File

@ -39,7 +39,7 @@ ResultCode ClientSession::SendSyncRequest() {
return ERR_SESSION_CLOSED_BY_REMOTE;
// Signal the server session that new data is available
return server->HandleSyncRequest();
return server->HandleSyncRequest(GetCurrentThread());
}
} // namespace