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 cc8c999994
commit d7538409fb
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