aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.h
AgeCommit message (Collapse)Author
2018-07-26kernel/timer: Make data members private where applicableLioncash
Instead, we can just expose functions that return the queryable state instead of letting anything modify it.
2018-01-20Format: Run the new clang format on everythingJames Rowe
2017-05-29Kernel: Move WaitObject to a separate fileYuri Kunde Schlesner
Now that HandleTable doesn't directly depend on WaitObject anymore, this can be separated from the main kernel.h header.
2017-02-21Timers: Immediately signal the timer if it was started with an initial value ↵Subv
of 0.
2017-01-10Merge pull request #2397 from Subv/pulsebunnei
Kernel: Implemented Pulse event and timers.
2017-01-05Kernel: Implemented Pulse event and timers.Subv
Closes #1904
2017-01-04Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv
This will be useful when implementing mutex priority inheritance.
2016-09-22move ResetType to kernel.hwwylele
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot
2016-03-12svc: Move ResetType enum to the kernel event headerLioncash
2015-02-02Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner
They're finally unnecessary, and will stop cluttering the application's handle table.
2015-02-02Explicitly instantiate constructors/destructors for Kernel objectsYuri Kunde Schlesner
This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
2015-02-02Kernel: Use separate Handle tables for CoreTiming userdataYuri Kunde Schlesner
This is to support the removal of GetHandle soon
2015-01-30Kernel: Mark all appropriate kernel objects as "final"Yuri Kunde Schlesner
2015-01-30Kernel: Convert Timer to (mostly) not use HandlesYuri Kunde Schlesner
2015-01-20core: Fix a few docstringsLioncash
2015-01-08SVC: Implemented the Timer service calls.Subv