summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/time_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/time_manager.h')
-rw-r--r--src/core/hle/kernel/time_manager.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/kernel/time_manager.h b/src/core/hle/kernel/time_manager.h
index b760311f1..eaec486d1 100644
--- a/src/core/hle/kernel/time_manager.h
+++ b/src/core/hle/kernel/time_manager.h
@@ -20,12 +20,19 @@ namespace Kernel {
class Thread;
+/**
+ * The `TimeManager` takes care of scheduling time events on threads and executes their TimeUp
+ * method when the event is triggered.
+ */
class TimeManager {
public:
- TimeManager(Core::System& system);
+ explicit TimeManager(Core::System& system);
+ /// Schedule a time event on `timetask` thread that will expire in 'nanoseconds'
+ /// returns a non-invalid handle in `event_handle` if correctly scheduled
void ScheduleTimeEvent(Handle& event_handle, Thread* timetask, s64 nanoseconds);
+ /// Unschedule an existing time event
void UnscheduleTimeEvent(Handle event_handle);
private: