index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
TimerQueue.cpp
Age
Commit message (
Expand
)
Author
2022-04-01
Everywhere: Run clang-format
Idan Horowitz
2021-09-07
Kernel: Remove a bunch of unused TimerQueue functions
Andreas Kling
2021-09-05
Kernel: Make all Spinlocks use u8 for storage, remove template
Brian Gianforcaro
2021-08-22
Kernel: Rename ScopedSpinlock => SpinlockLocker
Andreas Kling
2021-08-22
Kernel: Rename SpinLock => Spinlock
Andreas Kling
2021-08-08
Everywhere: Replace AK::Singleton => Singleton
Andreas Kling
2021-08-03
Kernel: Do not cancel stale timers when servicing sys$alarm
Brian Gianforcaro
2021-08-01
Kernel: Remove unused header includes
Brian Gianforcaro
2021-07-12
Kernel: Fix deadlock cancelling timer
Tom
2021-06-25
Kernel: Fix use after AK::move in Kernel::TimerQueue
Sahan Fernando
2021-06-24
Kernel: Move special sections into Sections.h
Hendiadyoin1
2021-06-24
Kernel: Pull apart CPU.h
Hendiadyoin1
2021-06-16
Kernel: Replace TimerQueue InlinedLinkedList usage with IntrusiveList
Brian Gianforcaro
2021-06-16
Kernel: Remove unused header includes from TimerQueue.cpp
Brian Gianforcaro
2021-05-20
Kernel: Remove an allocation when blocking a thread
Gunnar Beutner
2021-05-05
Kernel: Modify TimeManagement::current_time(..) API so it can't fail. (#6869)
Brian Gianforcaro
2021-04-23
AK: Rename adopt() to adopt_ref()
Andreas Kling
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-03-02
Kernel: Make TimeManagement use AK::Time internally
Ben Wiederhake
2021-03-02
Kernel: Make TimerQueue use AK::Time in interface
Ben Wiederhake
2021-03-02
Kernel: Make Thread use AK::Time internally
Ben Wiederhake
2021-03-02
Kernel: Make TimerId a distinct type
Ben Wiederhake
2021-03-02
Kernel: Make TimerQueue use AK::Time internally
Ben Wiederhake
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-02-19
Kernel: Slap UNMAP_AFTER_INIT on a bunch more functions
Andreas Kling
2020-12-21
Kernel: Improve time keeping and dramatically reduce interrupt load
Tom
2020-12-12
Kernel: Execute timer handlers outside of irq handler
Tom
2020-12-11
Kernel: Fix leaking Timer instances
Tom
2020-12-02
Kernel: Add CLOCK_REALTIME support to the TimerQueue
Tom
2020-12-02
Kernel: Use TimerQueue for SIGALRM
Tom
2020-12-02
Kernel: TimerQueue::cancel_timer needs to wait if timer is executing
Tom
2020-11-30
Kernel: Move some time related code from Scheduler into TimeManagement
Tom
2020-08-25
Kernel: Switch singletons to use new Singleton class
Tom
2020-08-22
Revert "Kernel: Switch singletons to use new Singleton class"
Andreas Kling
2020-08-22
Revert "Kernel: Move Singleton class to AK"
Andreas Kling
2020-08-22
Revert "AK: Get rid of make_singleton function"
Andreas Kling
2020-08-22
AK: Get rid of make_singleton function
Tom
2020-08-22
Kernel: Move Singleton class to AK
Tom
2020-08-21
Kernel: Switch singletons to use new Singleton class
Tom
2020-04-27
Kernel: Update TimerQueue next due timer only when necessary
Brian Gianforcaro
2020-04-27
Kernel: Expose timers via a TimerId type
Brian Gianforcaro
2020-04-26
Kernel: Refactor TimeQueue::add_timer to use timeval
Brian Gianforcaro
2020-02-16
Kernel: Move all code into the Kernel namespace
Andreas Kling
2020-01-18
Meta: Add license header to source files
Andreas Kling
2019-12-27
Kernel: Add kernel-level timer queue (heavily based on @juliusf's work)
Conrad Pankoff