summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar David Marcec2018-05-17 14:03:52 -0700
committerGravatar David Marcec2018-05-17 14:03:52 -0700
commitfd86cdb2e24a72f099889393da8236002be04565 (patch)
tree66aa2db4a4514c1cc82383f7d3e2d6d92d0c0cb4 /src/core/hle/service/service.cpp
parentMerge pull request #436 from bunnei/multi-core (diff)
downloadyuzu-fd86cdb2e24a72f099889393da8236002be04565.tar.gz
yuzu-fd86cdb2e24a72f099889393da8236002be04565.tar.xz
yuzu-fd86cdb2e24a72f099889393da8236002be04565.zip
Added RequestWithContext & ControlWithContext
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index dc30702c6..5b91089cf 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -144,10 +144,12 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co
144 rb.Push(RESULT_SUCCESS); 144 rb.Push(RESULT_SUCCESS);
145 return ResultCode(ErrorModule::HIPC, ErrorDescription::RemoteProcessDead); 145 return ResultCode(ErrorModule::HIPC, ErrorDescription::RemoteProcessDead);
146 } 146 }
147 case IPC::CommandType::ControlWithContext:
147 case IPC::CommandType::Control: { 148 case IPC::CommandType::Control: {
148 Core::System::GetInstance().ServiceManager().InvokeControlRequest(context); 149 Core::System::GetInstance().ServiceManager().InvokeControlRequest(context);
149 break; 150 break;
150 } 151 }
152 case IPC::CommandType::RequestWithContext:
151 case IPC::CommandType::Request: { 153 case IPC::CommandType::Request: {
152 InvokeRequest(context); 154 InvokeRequest(context);
153 break; 155 break;