summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* scheduler: Make HaveReadyThreads() a const member functionLioncash2018-08-121-1/+1
| | | | | This function doesn't modify instance state, so the const qualifier can be added to it.
* kernel: Move object class to its own source filesLioncash2018-08-021-0/+1
| | | | | | General moving to keep kernel object types separate from the direct kernel code. Also essentially a preliminary cleanup before eliminating global kernel state in the kernel code.
* kernel: Remove unnecessary includesLioncash2018-07-311-1/+2
| | | | | Removes unnecessary direct dependencies in some headers and also gets rid of indirect dependencies that were being relied on to be included.
* scheduler: Protect scheduling functions with a global mutex.bunnei2018-05-111-0/+3
|
* scheduler: Cleanup based on PR feedback.bunnei2018-02-191-3/+2
|
* kernel: Add Scheduler, which encapsulates the scheduling loading from Thread module.bunnei2018-02-181-0/+74