summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Namespace all code in the arm subdirectory under the Core namespaceLioncash2018-08-251-1/+1
| | | | Gets all of these types and interfaces out of the global namespace.
* 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: Remove unnecessary includesLioncash2018-07-311-0/+4
| | | | | Removes unnecessary direct dependencies in some headers and also gets rid of indirect dependencies that were being relied on to be included.
* Merge pull request #751 from Subv/tpidr_el0bunnei2018-07-211-0/+3
|\ | | | | CPU: Save and restore the TPIDR_EL0 system register on every context switch
| * CPU: Save and restore the TPIDR_EL0 system register on every context switch.Subv2018-07-211-0/+3
| | | | | | | | Note that there's currently a dynarmic bug preventing this register from being written.
* | thread: Convert ThreadStatus into an enum classLioncash2018-07-201-8/+8
|/ | | | | Makes the thread status strongly typed, so implicit conversions can't happen. It also makes it easier to catch mistakes at compile time.
* core/memory, core/hle/kernel: Use std::move where applicableLioncash2018-07-191-1/+3
| | | | Avoids pointless copies
* scheduler: Clear exclusive state when switching contextsMerryMage2018-07-161-0/+1
|
* Rename logging macro back to LOG_*James Rowe2018-07-031-3/+3
|
* scheduler: Protect scheduling functions with a global mutex.bunnei2018-05-111-0/+15
|
* kernel: Migrate logging macros to fmt-compatible onesLioncash2018-04-261-3/+3
|
* core: Move process creation out of global state.bunnei2018-03-141-3/+4
|
* scheduler: Cleanup based on PR feedback.bunnei2018-02-191-1/+1
|
* kernel: Add Scheduler, which encapsulates the scheduling loading from Thread module.bunnei2018-02-181-0/+134