summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* kernel/scheduler: Remove unused parameter to AddThread()Lioncash2019-03-301-1/+1
* kernel/scheduler: Use deduction guides on mutex locksLioncash2019-03-301-8/+8
* Fixes and corrections on formatting.Fernando Sahmkow2019-03-271-6/+9
* Use MultiLevelQueue instead of old ThreadQueueListFernando Sahmkow2019-03-271-17/+22
* core: Move PageTable struct into Common.bunnei2019-03-171-1/+1
* kernel/thread: Migrate WaitCurrentThread_Sleep into the Thread interfaceLioncash2019-03-161-4/+2
* kernel/scheduler: Pass in system instance in constructorLioncash2019-03-041-7/+7
* core_timing: Convert core timing into a classLioncash2019-02-161-1/+1
* core_timing: Rename CoreTiming namespace to Core::TimingLioncash2019-02-121-1/+1
* scheduler: Avoid manual Reschedule callZach Hilman2018-12-041-10/+8
* scheduler: Only work steal higher priority threads from other coresZach Hilman2018-12-031-21/+17
* svc: Avoid performance-degrading unnecessary rescheduleZach Hilman2018-12-021-1/+2
* scheduler: Add explanations for YieldWith and WithoutLoadBalancingZach Hilman2018-11-221-4/+57
* svc: Implement yield types 0 and -1Zach Hilman2018-11-191-0/+18
* svc: Implement svcGetInfo command 0xF0000002Lioncash2018-10-261-3/+25
* kernel/thread: Use a regular pointer for the owner/current processLioncash2018-10-101-4/+4
* kernel/thread: Make all instance variables privateLioncash2018-10-041-18/+18
* kernel/process: Make data member variables privateLioncash2018-09-301-1/+1
* kernel/scheduler: Take ARM_Interface instance by reference in the constructorLioncash2018-09-251-7/+7
* core: Namespace all code in the arm subdirectory under the Core namespaceLioncash2018-08-251-1/+1
* scheduler: Make HaveReadyThreads() a const member functionLioncash2018-08-121-1/+1
* kernel: Remove unnecessary includesLioncash2018-07-311-0/+4
* 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.Subv2018-07-211-0/+3
* | thread: Convert ThreadStatus into an enum classLioncash2018-07-201-8/+8
|/
* core/memory, core/hle/kernel: Use std::move where applicableLioncash2018-07-191-1/+3
* 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