Kernel/IPC: Put a thread to sleep when performing an LLE IPC request.

It will be awoken when the server replies to the request via svcReplyAndReceive.
This commit is contained in:
Subv 2017-10-01 22:09:00 -05:00
parent 33c5982f6d
commit 8f108367c9
2 changed files with 3 additions and 2 deletions

View file

@ -241,8 +241,6 @@ static ResultCode SendSyncRequest(Kernel::Handle handle) {
Core::System::GetInstance().PrepareReschedule();
// TODO(Subv): svcSendSyncRequest should put the caller thread to sleep while the server
// responds and cause a reschedule.
return session->SendSyncRequest(Kernel::GetCurrentThread());
}