mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-06 06:52:44 +01:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
41 lines
933 B
C++
41 lines
933 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <mutex>
|
|
|
|
namespace Core {
|
|
class System;
|
|
} // namespace Core
|
|
|
|
namespace Core::Timing {
|
|
struct EventType;
|
|
} // namespace Core::Timing
|
|
|
|
namespace Kernel {
|
|
|
|
class KThread;
|
|
|
|
/**
|
|
* The `TimeManager` takes care of scheduling time events on threads and executes their TimeUp
|
|
* method when the event is triggered.
|
|
*/
|
|
class TimeManager {
|
|
public:
|
|
explicit TimeManager(Core::System& system);
|
|
|
|
/// Schedule a time event on `timetask` thread that will expire in 'nanoseconds'
|
|
void ScheduleTimeEvent(KThread* time_task, s64 nanoseconds);
|
|
|
|
/// Unschedule an existing time event
|
|
void UnscheduleTimeEvent(KThread* thread);
|
|
|
|
private:
|
|
Core::System& system;
|
|
std::shared_ptr<Core::Timing::EventType> time_manager_event_type;
|
|
std::mutex mutex;
|
|
};
|
|
|
|
} // namespace Kernel
|