aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/time/time.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-22 17:59:24 -0500
committerSubv <subv2112@gmail.com>2018-01-22 20:40:43 -0500
commitb0489c9a64588d2140d9a98b69c5a0adc541a436 (patch)
tree9b95ca11c277b6150dbc2e891e1ed2a83a3646fe /src/core/hle/service/time/time.cpp
parent7efa6e8801866da8ed4dca97fa25d2451dcb042e (diff)
Services: Added a todo about returning interfaces as domain objects in lm, hid and time.
Diffstat (limited to 'src/core/hle/service/time/time.cpp')
-rw-r--r--src/core/hle/service/time/time.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/time/time.cpp b/src/core/hle/service/time/time.cpp
index 9039a4cec..8abb2ce7a 100644
--- a/src/core/hle/service/time/time.cpp
+++ b/src/core/hle/service/time/time.cpp
@@ -83,6 +83,8 @@ private:
};
void Module::Interface::GetStandardUserSystemClock(Kernel::HLERequestContext& ctx) {
+ // TODO(Subv): Verify if this should return the interface as a domain object when called from
+ // within a domain.
auto system_clock = std::make_shared<ISystemClock>();
auto sessions = Kernel::ServerSession::CreateSessionPair(system_clock->GetServiceName());
auto server = std::get<Kernel::SharedPtr<Kernel::ServerSession>>(sessions);
@@ -95,6 +97,8 @@ void Module::Interface::GetStandardUserSystemClock(Kernel::HLERequestContext& ct
}
void Module::Interface::GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx) {
+ // TODO(Subv): Verify if this should return the interface as a domain object when called from
+ // within a domain.
auto system_clock = std::make_shared<ISystemClock>();
auto sessions = Kernel::ServerSession::CreateSessionPair(system_clock->GetServiceName());
auto server = std::get<Kernel::SharedPtr<Kernel::ServerSession>>(sessions);
@@ -107,6 +111,8 @@ void Module::Interface::GetStandardNetworkSystemClock(Kernel::HLERequestContext&
}
void Module::Interface::GetStandardSteadyClock(Kernel::HLERequestContext& ctx) {
+ // TODO(Subv): Verify if this should return the interface as a domain object when called from
+ // within a domain.
auto steady_clock = std::make_shared<ISteadyClock>();
auto sessions = Kernel::ServerSession::CreateSessionPair(steady_clock->GetServiceName());
auto server = std::get<Kernel::SharedPtr<Kernel::ServerSession>>(sessions);