2019-09-19 02:45:11 +02:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2019-07-25 16:44:51 +02:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time.Clock
|
|
|
|
|
{
|
|
|
|
|
class TickBasedSteadyClockCore : SteadyClockCore
|
|
|
|
|
{
|
2019-10-08 05:48:49 +02:00
|
|
|
|
public TickBasedSteadyClockCore() {}
|
2019-07-25 16:44:51 +02:00
|
|
|
|
|
|
|
|
|
public override SteadyClockTimePoint GetTimePoint(KThread thread)
|
|
|
|
|
{
|
|
|
|
|
SteadyClockTimePoint result = new SteadyClockTimePoint
|
|
|
|
|
{
|
|
|
|
|
TimePoint = 0,
|
|
|
|
|
ClockSourceId = GetClockSourceId()
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-08 05:48:49 +02:00
|
|
|
|
TimeSpanType ticksTimeSpan;
|
|
|
|
|
|
|
|
|
|
// As this may be called before the guest code, we support passing a null thread to make this api usable.
|
|
|
|
|
if (thread == null)
|
|
|
|
|
{
|
|
|
|
|
ticksTimeSpan = TimeSpanType.FromSeconds(0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ticksTimeSpan = TimeSpanType.FromTicks(thread.Context.CntpctEl0, thread.Context.CntfrqEl0);
|
|
|
|
|
}
|
2019-07-25 16:44:51 +02:00
|
|
|
|
|
|
|
|
|
result.TimePoint = ticksTimeSpan.ToSeconds();
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|