summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2019-03-04kernel/scheduler: Pass in system instance in constructorLioncash1-7/+7
2019-02-16core_timing: Convert core timing into a classLioncash1-1/+1
2019-02-12core_timing: Rename CoreTiming namespace to Core::TimingLioncash1-1/+1
2018-12-04scheduler: Avoid manual Reschedule callZach Hilman1-10/+8
2018-12-03scheduler: Only work steal higher priority threads from other coresZach Hilman1-21/+17
2018-12-02svc: Avoid performance-degrading unnecessary rescheduleZach Hilman1-1/+2
2018-11-22scheduler: Add explanations for YieldWith and WithoutLoadBalancingZach Hilman1-4/+57
2018-11-19svc: Implement yield types 0 and -1Zach Hilman1-0/+18
2018-10-26svc: Implement svcGetInfo command 0xF0000002Lioncash1-3/+25
2018-10-10kernel/thread: Use a regular pointer for the owner/current processLioncash1-4/+4
2018-10-04kernel/thread: Make all instance variables privateLioncash1-18/+18
2018-09-30kernel/process: Make data member variables privateLioncash1-1/+1
2018-09-25kernel/scheduler: Take ARM_Interface instance by reference in the constructorLioncash1-7/+7
2018-08-25core: Namespace all code in the arm subdirectory under the Core namespaceLioncash1-1/+1
2018-08-12scheduler: Make HaveReadyThreads() a const member functionLioncash1-1/+1
2018-07-31kernel: Remove unnecessary includesLioncash1-0/+4
2018-07-21CPU: Save and restore the TPIDR_EL0 system register on every context switch.Subv1-0/+3
2018-07-20thread: Convert ThreadStatus into an enum classLioncash1-8/+8
2018-07-19core/memory, core/hle/kernel: Use std::move where applicableLioncash1-1/+3
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