diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 04:21:07 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2019-09-22 04:21:07 +0200 |
commit | d3783fcc5231b468d41e689458788c365d157b8e (patch) | |
tree | 68a6af3b5e81d037abc87ddb36f8a9f1a7a4d594 | |
parent | disable clang-format temp (diff) | |
download | yuzu-d3783fcc5231b468d41e689458788c365d157b8e.tar yuzu-d3783fcc5231b468d41e689458788c365d157b8e.tar.gz yuzu-d3783fcc5231b468d41e689458788c365d157b8e.tar.bz2 yuzu-d3783fcc5231b468d41e689458788c365d157b8e.tar.lz yuzu-d3783fcc5231b468d41e689458788c365d157b8e.tar.xz yuzu-d3783fcc5231b468d41e689458788c365d157b8e.tar.zst yuzu-d3783fcc5231b468d41e689458788c365d157b8e.zip |
-rw-r--r-- | src/core/hle/service/nvdrv/interface.cpp | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp index 699494fcd..56cfc02c5 100644 --- a/src/core/hle/service/nvdrv/interface.cpp +++ b/src/core/hle/service/nvdrv/interface.cpp @@ -60,26 +60,24 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) { if (ctrl.must_delay) { ctrl.fresh_call = false; - // clang-format off - ctx.SleepClientThread( - "NVServices::DelayedResponse", ctrl.timeout, - [=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx, - Kernel::ThreadWakeupReason reason) { - IoctlCtrl ctrl2{ctrl}; - std::vector<u8> tmp_output = output; - std::vector<u8> tmp_output2 = output2; - u32 result = nvdrv->Ioctl(fd, command, input, input2, tmp_output, tmp_output2, - ctrl2, version); - ctx.WriteBuffer(tmp_output, 0); - if (version == IoctlVersion::Version3) { - ctx.WriteBuffer(tmp_output2, 1); - } - IPC::ResponseBuilder rb{ctx, 3}; - rb.Push(RESULT_SUCCESS); - rb.Push(result); - }, - nvdrv->GetEventWriteable(ctrl.event_id)); - // clang-format on + ctx.SleepClientThread("NVServices::DelayedResponse", ctrl.timeout, + [=](Kernel::SharedPtr<Kernel::Thread> thread, + Kernel::HLERequestContext& ctx, + Kernel::ThreadWakeupReason reason) { + IoctlCtrl ctrl2{ctrl}; + std::vector<u8> tmp_output = output; + std::vector<u8> tmp_output2 = output2; + u32 result = nvdrv->Ioctl(fd, command, input, input2, tmp_output, + tmp_output2, ctrl2, version); + ctx.WriteBuffer(tmp_output, 0); + if (version == IoctlVersion::Version3) { + ctx.WriteBuffer(tmp_output2, 1); + } + IPC::ResponseBuilder rb{ctx, 3}; + rb.Push(RESULT_SUCCESS); + rb.Push(result); + }, + nvdrv->GetEventWriteable(ctrl.event_id)); } else { ctx.WriteBuffer(output); if (version == IoctlVersion::Version3) { |