diff options
author | Subv <subv2112@gmail.com> | 2018-01-22 23:59:24 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-01-23 02:40:43 +0100 |
commit | b0489c9a64588d2140d9a98b69c5a0adc541a436 (patch) | |
tree | 9b95ca11c277b6150dbc2e891e1ed2a83a3646fe /src/core/hle/service/lm/lm.cpp | |
parent | Time: Don't create unnecessary ports when retrieving the clock service sessions. (diff) | |
download | yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.tar yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.tar.gz yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.tar.bz2 yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.tar.lz yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.tar.xz yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.tar.zst yuzu-b0489c9a64588d2140d9a98b69c5a0adc541a436.zip |
Diffstat (limited to 'src/core/hle/service/lm/lm.cpp')
-rw-r--r-- | src/core/hle/service/lm/lm.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index dd0f75ce1..b505cdcaf 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp @@ -146,6 +146,9 @@ void InstallInterfaces(SM::ServiceManager& service_manager) { * 0: ResultCode */ void LM::Initialize(Kernel::HLERequestContext& ctx) { + // TODO(Subv): Verify if this should return the interface as a domain object when called from + // within a domain. + auto logger = std::make_shared<Logger>(); auto sessions = Kernel::ServerSession::CreateSessionPair(logger->GetServiceName()); auto server = std::get<Kernel::SharedPtr<Kernel::ServerSession>>(sessions); |