diff options
| author | 2018-01-17 01:16:55 -0500 | |
|---|---|---|
| committer | 2018-01-17 01:20:10 -0500 | |
| commit | 30cb98f874d0df9e818976f2140135ac8fe1501b (patch) | |
| tree | 53bba56a04da35b8c262038db928bc0158458389 /src/core/hle/kernel/domain.cpp | |
| parent | loggin: Add IPC logging category. (diff) | |
| download | yuzu-30cb98f874d0df9e818976f2140135ac8fe1501b.tar.gz yuzu-30cb98f874d0df9e818976f2140135ac8fe1501b.tar.xz yuzu-30cb98f874d0df9e818976f2140135ac8fe1501b.zip | |
ipc: Implement domain command CloseVirtualHandle.
Diffstat (limited to 'src/core/hle/kernel/domain.cpp')
| -rw-r--r-- | src/core/hle/kernel/domain.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/core/hle/kernel/domain.cpp b/src/core/hle/kernel/domain.cpp index 7ebb4b9c7..5035e9c08 100644 --- a/src/core/hle/kernel/domain.cpp +++ b/src/core/hle/kernel/domain.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "common/logging/log.h" | ||
| 6 | #include "core/hle/ipc_helpers.h" | ||
| 5 | #include "core/hle/kernel/client_port.h" | 7 | #include "core/hle/kernel/client_port.h" |
| 6 | #include "core/hle/kernel/domain.h" | 8 | #include "core/hle/kernel/domain.h" |
| 7 | #include "core/hle/kernel/handle_table.h" | 9 | #include "core/hle/kernel/handle_table.h" |
| @@ -36,7 +38,24 @@ ResultCode Domain::SendSyncRequest(SharedPtr<Thread> thread) { | |||
| 36 | if (domain_message_header) { | 38 | if (domain_message_header) { |
| 37 | // If there is a DomainMessageHeader, then this is CommandType "Request" | 39 | // If there is a DomainMessageHeader, then this is CommandType "Request" |
| 38 | const u32 object_id{context.GetDomainMessageHeader()->object_id}; | 40 | const u32 object_id{context.GetDomainMessageHeader()->object_id}; |
| 39 | return request_handlers[object_id - 1]->HandleSyncRequest(context); | 41 | switch (domain_message_header->command) { |
| 42 | case IPC::DomainMessageHeader::CommandType::SendMessage: | ||
| 43 | return request_handlers[object_id - 1]->HandleSyncRequest(context); | ||
| 44 | |||
| 45 | case IPC::DomainMessageHeader::CommandType::CloseVirtualHandle: { | ||
| 46 | LOG_DEBUG(IPC, "CloseVirtualHandle, object_id=0x%08X", object_id); | ||
| 47 | |||
| 48 | request_handlers[object_id - 1] = nullptr; | ||
| 49 | |||
| 50 | IPC::RequestBuilder rb{context, 2}; | ||
| 51 | rb.Push(RESULT_SUCCESS); | ||
| 52 | |||
| 53 | return RESULT_SUCCESS; | ||
| 54 | } | ||
| 55 | } | ||
| 56 | |||
| 57 | LOG_CRITICAL(IPC, "Unknown domain command=%d", domain_message_header->command.Value()); | ||
| 58 | UNIMPLEMENTED(); | ||
| 40 | } | 59 | } |
| 41 | return request_handlers.front()->HandleSyncRequest(context); | 60 | return request_handlers.front()->HandleSyncRequest(context); |
| 42 | } | 61 | } |