summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* kernel: Move object class to its own source filesGravatar Lioncash2018-08-011-1/+1
* core_timing: Split off utility functions into core_timing_utilGravatar MerryMage2018-07-241-0/+1
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-021-2/+2
* core_timing: Namespace all functions and constants in core_timing's headerGravatar Lioncash2018-04-301-2/+3
* kernel: Migrate logging macros to fmt-compatible onesGravatar Lioncash2018-04-251-2/+2
* Format: Run the new clang format on everythingGravatar James Rowe2018-01-201-1/+1
* CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)Gravatar B3n302018-01-081-6/+3
* ResultVal: Remove MoveFrom()Gravatar Yuri Kunde Schlesner2017-06-181-1/+1
* Kernel: Move HandleTable to a separate fileGravatar Yuri Kunde Schlesner2017-05-291-0/+1
* Timer: restore missing signaled=true from #2421Gravatar wwylele2017-02-271-0/+2
* Fix log entry in timer::signal (#2600)Gravatar B3n302017-02-271-1/+1
* Timers: Immediately signal the timer if it was started with an initial value ...Gravatar Subv2017-02-211-16/+23
* Merge pull request #2397 from Subv/pulseGravatar bunnei2017-01-101-5/+7
|\
| * Kernel: Implemented Pulse event and timers.Gravatar Subv2017-01-051-5/+7
* | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv2017-01-041-3/+3
|/
* Threading: Reworked the way our scheduler works.Gravatar Subv2016-12-031-4/+0
* Kernel/Events: Log an error when trying to create Pulse events and timers.Gravatar Subv2016-11-191-0/+5
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-3/+1
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-181-6/+3
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-8/+11
* svc: Make ResetType an enum classGravatar Lioncash2016-03-121-1/+1
* 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