summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* HLE/Timers: Reset OneShot timers when they are acquired instead of when they'...Gravatar Subv2015-12-291-3/+3
* general: Silence some warnings when using clangGravatar Lioncash2015-09-161-2/+4
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-291-1/+1
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei2015-05-201-0/+4
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-071-1/+2
* Kernel: Properly initialize and shutdown all modules.Gravatar bunnei2015-05-011-1/+2
* Kernel: Use the correct format string for u64 hex.Gravatar Emmanuel Gil Peyrot2015-04-141-1/+1
* Build: Fixed some warningsGravatar Subv2015-02-121-1/+1
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-101-1/+1
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-021-4/+3
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-021-0/+3
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-021-7/+8
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-021-0/+3
* Kernel: Convert Timer to (mostly) not use HandlesGravatar Yuri Kunde Schlesner2015-01-301-76/+31
* Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner2015-01-301-1/+1
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-211-1/+1
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-211-4/+4
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-211-1/+1
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-211-7/+2
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-211-3/+3
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-211-1/+5
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-211-3/+3
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei2015-01-211-9/+3
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-091-5/+5
* Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-091-4/+6
* SVC: Implemented the Timer service calls.Gravatar Subv2015-01-081-0/+142