summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-08-25core: Namespace all code in the arm subdirectory under the Core namespaceLioncash1-1/+1
Gets all of these types and interfaces out of the global namespace.
2018-08-12scheduler: Make HaveReadyThreads() a const member functionLioncash1-1/+1
This function doesn't modify instance state, so the const qualifier can be added to it.
2018-07-31kernel: Remove unnecessary includesLioncash1-0/+4
Removes unnecessary direct dependencies in some headers and also gets rid of indirect dependencies that were being relied on to be included.
2018-07-21CPU: Save and restore the TPIDR_EL0 system register on every context switch.Subv1-0/+3
Note that there's currently a dynarmic bug preventing this register from being written.
2018-07-20thread: Convert ThreadStatus into an enum classLioncash1-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.
2018-07-19core/memory, core/hle/kernel: Use std::move where applicableLioncash1-1/+3
Avoids pointless copies
2018-07-16scheduler: Clear exclusive state when switching contextsMerryMage1-0/+1
2018-07-03Rename logging macro back to LOG_*James Rowe1-3/+3
2018-05-11scheduler: Protect scheduling functions with a global mutex.bunnei1-0/+15
2018-04-26kernel: Migrate logging macros to fmt-compatible onesLioncash1-3/+3
2018-03-14core: Move process creation out of global state.bunnei1-3/+4
2018-02-19scheduler: Cleanup based on PR feedback.bunnei1-1/+1
2018-02-18kernel: Add Scheduler, which encapsulates the scheduling loading from Thread module.bunnei1-0/+134