summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/timer.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Rename logging macro back to LOG_*James Rowe2018-07-031-2/+2
* core_timing: Namespace all functions and constants in core_timing's headerLioncash2018-04-301-2/+3
* kernel: Migrate logging macros to fmt-compatible onesLioncash2018-04-261-2/+2
* Format: Run the new clang format on everythingJames Rowe2018-01-211-1/+1
* CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)B3n302018-01-091-6/+3
* ResultVal: Remove MoveFrom()Yuri Kunde Schlesner2017-06-191-1/+1
* Kernel: Move HandleTable to a separate fileYuri Kunde Schlesner2017-05-301-0/+1
* Timer: restore missing signaled=true from #2421wwylele2017-02-271-0/+2
* Fix log entry in timer::signal (#2600)B3n302017-02-271-1/+1
* Timers: Immediately signal the timer if it was started with an initial value of 0.Subv2017-02-221-16/+23
* Merge pull request #2397 from Subv/pulsebunnei2017-01-101-5/+7
|\
| * Kernel: Implemented Pulse event and timers.Subv2017-01-051-5/+7
* | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv2017-01-041-3/+3
|/
* Threading: Reworked the way our scheduler works.Subv2016-12-041-4/+0
* Kernel/Events: Log an error when trying to create Pulse events and timers.Subv2016-11-191-0/+5
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-3/+1
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-6/+3
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-8/+11
* svc: Make ResetType an enum classLioncash2016-03-121-1/+1
* HLE/Timers: Reset OneShot timers when they are acquired instead of when they're triggered.Subv2015-12-301-3/+3
* general: Silence some warnings when using clangLioncash2015-09-161-2/+4
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-1/+1
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.bunnei2015-05-211-0/+4
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-1/+2
* Kernel: Properly initialize and shutdown all modules.bunnei2015-05-021-1/+2
* Kernel: Use the correct format string for u64 hex.Emmanuel Gil Peyrot2015-04-141-1/+1
* Build: Fixed some warningsSubv2015-02-121-1/+1
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-1/+1
* Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner2015-02-021-4/+3
* Explicitly instantiate constructors/destructors for Kernel objectsYuri Kunde Schlesner2015-02-021-0/+3
* Kernel: Use separate Handle tables for CoreTiming userdataYuri Kunde Schlesner2015-02-021-7/+8
* Kernel: Remove previous scheduled event when a Timer is re-SetYuri Kunde Schlesner2015-02-021-0/+3
* Kernel: Convert Timer to (mostly) not use HandlesYuri Kunde Schlesner2015-01-301-76/+31
* Kernel: Remove useless/duplicated comments; mark functions staticYuri Kunde Schlesner2015-01-301-1/+1
* Kernel: Renamed some functions for clarity.bunnei2015-01-221-1/+1
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.bunnei2015-01-221-4/+4
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual.bunnei2015-01-221-1/+1
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.bunnei2015-01-221-7/+2
* WaitSynchronizationN: Refactor to fix several bugsbunnei2015-01-221-3/+3
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.bunnei2015-01-221-1/+5
* WaitSynchronizationN: Implement return valuesbunnei2015-01-221-3/+3
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.bunnei2015-01-221-9/+3
* Kernel: Start using boost::intrusive_ptr for lifetime managementYuri Kunde Schlesner2015-01-091-5/+5
* Thread: Reduce use of Handles and move some funcs to inside the class.Yuri Kunde Schlesner2015-01-091-4/+6
* SVC: Implemented the Timer service calls.Subv2015-01-091-0/+142