mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +00:00
Kernel: Make TimerQueue use AK::Time in interface
This commit is contained in:
parent
2b6546c40a
commit
91c72faa3c
2 changed files with 5 additions and 5 deletions
|
@ -93,7 +93,7 @@ public:
|
|||
|
||||
TimerId add_timer(NonnullRefPtr<Timer>&&);
|
||||
RefPtr<Timer> add_timer_without_id(clockid_t, const Time&, Function<void()>&&);
|
||||
TimerId add_timer(clockid_t, timeval& timeout, Function<void()>&& callback);
|
||||
TimerId add_timer(clockid_t, const Time& timeout, Function<void()>&& callback);
|
||||
bool cancel_timer(TimerId id);
|
||||
bool cancel_timer(Timer&);
|
||||
bool cancel_timer(NonnullRefPtr<Timer>&& timer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue