summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/timer.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* move ResetType to kernel.hwwylele2016-09-221-1/+0
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-1/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-8/+14
|
* svc: Move ResetType enum to the kernel event headerLioncash2016-03-131-1/+1
|
* Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner2015-02-021-1/+1
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Explicitly instantiate constructors/destructors for Kernel objectsYuri Kunde Schlesner2015-02-021-1/+2
| | | | | | 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.)
* Kernel: Use separate Handle tables for CoreTiming userdataYuri Kunde Schlesner2015-02-021-0/+3
| | | | This is to support the removal of GetHandle soon
* Kernel: Mark all appropriate kernel objects as "final"Yuri Kunde Schlesner2015-01-301-1/+1
|
* Kernel: Convert Timer to (mostly) not use HandlesYuri Kunde Schlesner2015-01-301-28/+41
|
* core: Fix a few docstringsLioncash2015-01-201-1/+1
|
* SVC: Implemented the Timer service calls.Subv2015-01-091-0/+47