summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2019-01-31kernel: Remove the Timer classGravatar Lioncash1-84/+0
2019-01-30kernel/timer: Remove unnecessary WakeupAllWaitingThreads() overrideGravatar Lioncash1-4/+0
2019-01-04Removed pulse event typeGravatar David Marcec1-3/+0
2018-08-28kernel: Eliminate kernel global stateGravatar Lioncash1-35/+10
2018-08-01kernel: Move object class to its own source filesGravatar Lioncash1-1/+1
2018-07-24core_timing: Split off utility functions into core_timing_utilGravatar MerryMage1-0/+1
2018-07-02Rename logging macro back to LOG_*Gravatar James Rowe1-2/+2
2018-04-30core_timing: Namespace all functions and constants in core_timing's headerGravatar Lioncash1-2/+3
2018-04-25kernel: Migrate logging macros to fmt-compatible onesGravatar Lioncash1-2/+2
2018-01-20Format: Run the new clang format on everythingGravatar James Rowe1-1/+1
2018-01-08CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)Gravatar B3n301-6/+3
2017-06-18ResultVal: Remove MoveFrom()Gravatar Yuri Kunde Schlesner1-1/+1
2017-05-29Kernel: Move HandleTable to a separate fileGravatar Yuri Kunde Schlesner1-0/+1
2017-02-27Timer: restore missing signaled=true from #2421Gravatar wwylele1-0/+2
2017-02-27Fix log entry in timer::signal (#2600)Gravatar B3n301-1/+1
2017-02-21Timers: Immediately signal the timer if it was started with an initial value ...Gravatar Subv1-16/+23
2017-01-05Kernel: Implemented Pulse event and timers.Gravatar Subv1-5/+7
2017-01-04Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv1-3/+3
2016-12-03Threading: Reworked the way our scheduler works.Gravatar Subv1-4/+0
2016-11-19Kernel/Events: Log an error when trying to create Pulse events and timers.Gravatar Subv1-0/+5
2016-09-21Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot1-3/+1
2016-09-18Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner1-6/+3
2016-09-18Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot1-8/+11
2016-03-12svc: Make ResetType an enum classGravatar Lioncash1-1/+1
2015-12-29HLE/Timers: Reset OneShot timers when they are acquired instead of when they'...Gravatar Subv1-3/+3
2015-09-16general: Silence some warnings when using clangGravatar Lioncash1-2/+4
2015-05-29Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot1-1/+1
2015-05-20Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei1-0/+4
2015-05-07Common: Remove common.hGravatar Yuri Kunde Schlesner1-1/+2
2015-05-01Kernel: Properly initialize and shutdown all modules.Gravatar bunnei1-1/+2
2015-04-14Kernel: Use the correct format string for u64 hex.Gravatar Emmanuel Gil Peyrot1-1/+1
2015-02-12Build: Fixed some warningsGravatar Subv1-1/+1
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift1-1/+1
2015-02-02Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner1-4/+3
2015-02-02Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner1-0/+3
2015-02-02Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner1-7/+8
2015-02-02Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner1-0/+3
2015-01-30Kernel: Convert Timer to (mostly) not use HandlesGravatar Yuri Kunde Schlesner1-76/+31
2015-01-30Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner1-1/+1
2015-01-21Kernel: Renamed some functions for clarity.Gravatar bunnei1-1/+1
2015-01-21Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei1-4/+4
2015-01-21WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei1-1/+1
2015-01-21Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei1-7/+2
2015-01-21WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei1-3/+3
2015-01-21Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei1-1/+5
2015-01-21WaitSynchronizationN: Implement return valuesGravatar bunnei1-3/+3
2015-01-21Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei1-9/+3
2015-01-09Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner1-5/+5
2015-01-09Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner1-4/+6