index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
scheduler.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Revert "core: Fix clang build"
bunnei
2020-10-21
1
-51
/
+21
*
core: Fix clang build
Lioncash
2020-10-18
1
-21
/
+51
*
core/CMakeLists: Make some warnings errors
Lioncash
2020-10-13
1
-5
/
+5
*
hle/scheduler: Fix data race in is_context_switch_pending
ReinUsesLisp
2020-08-26
1
-2
/
+6
*
Merge pull request #4491 from lioncash/unused-vars
bunnei
2020-08-10
1
-17
/
+11
|
\
|
*
kernel: Remove unused variables
Lioncash
2020-08-05
1
-17
/
+11
*
|
scheduler: Resolve sign conversion warning
Lioncash
2020-08-05
1
-1
/
+2
|
/
*
cpu_manager: Mark function getters as static
Lioncash
2020-07-16
1
-1
/
+1
*
core_timing,scheduler: Use std::scoped_lock when possible
ReinUsesLisp
2020-06-29
1
-11
/
+10
*
Core/Common: Address Feedback.
Fernando Sahmkow
2020-06-28
1
-2
/
+2
*
Kernel: Correct Host Context on Threads and Scheduler.
Fernando Sahmkow
2020-06-27
1
-8
/
+8
*
Scheduler: Correct Reload/Unload
Fernando Sahmkow
2020-06-27
1
-3
/
+4
*
Thread: Release the ARM Interface on exitting.
Fernando Sahmkow
2020-06-27
1
-1
/
+1
*
General: Move ARM_Interface into Threads.
Fernando Sahmkow
2020-06-27
1
-7
/
+5
*
Scheduler: Correct yielding interaction with SetThreadActivity.
Fernando Sahmkow
2020-06-27
1
-0
/
+15
*
General: Fix microprofile on dynarmic/svc, fix wait tree showing which threads were running.
Fernando Sahmkow
2020-06-27
1
-0
/
+7
*
Kernel: Rewind on SVC change.
Fernando Sahmkow
2020-06-27
1
-0
/
+2
*
CPU_Manager: Unload/Reload threads on preemption on SingleCore
Fernando Sahmkow
2020-06-27
1
-0
/
+42
*
Scheduler: Set last running time on thread.
Fernando Sahmkow
2020-06-27
1
-0
/
+2
*
Kernel: Corrections to TimeManager, Scheduler and Mutex.
Fernando Sahmkow
2020-06-27
1
-1
/
+1
*
Kernel: Fixes, corrections and asserts to scheduler and different svcs.
Fernando Sahmkow
2020-06-27
1
-1
/
+2
*
Scheduler: Correct yields.
Fernando Sahmkow
2020-06-27
1
-7
/
+21
*
Scheduler: Remove arm_interface lock and a few corrections.
Fernando Sahmkow
2020-06-27
1
-7
/
+3
*
SVC: Correct SetThreadActivity.
Fernando Sahmkow
2020-06-27
1
-5
/
+4
*
Scheduler: Correct locking for hle threads.
Fernando Sahmkow
2020-06-27
1
-1
/
+2
*
Scheduler: Fix HLE Threads on guard
Fernando Sahmkow
2020-06-27
1
-4
/
+6
*
Scheduler: Protect on closed threads.
Fernando Sahmkow
2020-06-27
1
-7
/
+17
*
Scheduler: Correct assert.
Fernando Sahmkow
2020-06-27
1
-4
/
+2
*
Core: Correct rebase.
Fernando Sahmkow
2020-06-27
1
-6
/
+5
*
Scheduler: Release old thread fiber before trying to switch to the next thread fiber.
Fernando Sahmkow
2020-06-27
1
-11
/
+26
*
Scheduler: Correct Select Threads Step 2.
Fernando Sahmkow
2020-06-27
1
-0
/
+1
*
Kernel: Corrections to Scheduling.
Fernando Sahmkow
2020-06-27
1
-13
/
+13
*
General: Add Asserts
Fernando Sahmkow
2020-06-27
1
-0
/
+18
*
General: Add better safety for JIT use.
Fernando Sahmkow
2020-06-27
1
-0
/
+3
*
SVC: Correct WaitSynchronization, WaitProcessWideKey, SignalProcessWideKey.
Fernando Sahmkow
2020-06-27
1
-1
/
+1
*
SVC: Correct SendSyncRequest.
Fernando Sahmkow
2020-06-27
1
-0
/
+9
*
General: Recover Prometheus project from harddrive failure
Fernando Sahmkow
2020-06-27
1
-119
/
+296
*
core: Implement separate A32/A64 ARM interfaces.
bunnei
2020-03-03
1
-9
/
+12
*
Scheduler: Inline global scheduler in Scheduler Lock.
Fernando Sahmkow
2020-02-22
1
-4
/
+2
*
Kernel: Correct pending feedback.
Fernando Sahmkow
2020-02-22
1
-3
/
+4
*
Kernel: Address Feedback.
Fernando Sahmkow
2020-02-22
1
-9
/
+12
*
Kernel: Implement Scheduler locks
Fernando Sahmkow
2020-02-22
1
-0
/
+48
*
Kernel: Make global scheduler depend on KernelCore
Fernando Sahmkow
2020-02-22
1
-3
/
+3
*
Core: Address Feedback
Fernando Sahmkow
2020-02-14
1
-2
/
+2
*
Core: Set all hardware emulation constants in a single file.
Fernando Sahmkow
2020-02-12
1
-6
/
+6
*
Core: Refactor CpuCoreManager to CpuManager and Cpu to Core Manager.
Fernando Sahmkow
2020-01-26
1
-1
/
+0
*
CpuCore: Clear exclusive state after doing a run in dynarmic.
Fernando Sahmkow
2019-12-05
1
-1
/
+0
*
kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)
bunnei
2019-11-25
1
-5
/
+5
*
kernel: Resolve sign conversion warnings
Lioncash
2019-11-12
1
-23
/
+23
*
scheduler: Mark parameter of AskForReselectionOrMarkRedundant() as const
Lioncash
2019-10-28
1
-4
/
+4
*
scheduler: Silence sign conversion warnings
Lioncash
2019-10-28
1
-5
/
+5
*
scheduler: Initialize class members directly where applicable
Lioncash
2019-10-28
1
-5
/
+3
*
scheduler: Amend documentation comments
Lioncash
2019-10-28
1
-29
/
+0
*
Kernel: Clang Format
Fernando Sahmkow
2019-10-15
1
-1
/
+1
*
Kernel: Address Feedback.
Fernando Sahmkow
2019-10-15
1
-6
/
+47
*
Kernel Scheduler: Make sure the global scheduler shutdowns correctly.
Fernando Sahmkow
2019-10-15
1
-0
/
+8
*
Kernel: Clang Format
Fernando Sahmkow
2019-10-15
1
-1
/
+2
*
Kernel: Remove global system accessor from WaitObject
Fernando Sahmkow
2019-10-15
1
-1
/
+1
*
Scheduler: Implement Yield Count and Core migration on Thread Preemption.
Fernando Sahmkow
2019-10-15
1
-5
/
+76
*
Scheduler: Corrections to YieldAndBalanceLoad and Yield bombing protection.
Fernando Sahmkow
2019-10-15
1
-7
/
+7
*
Kernel: Initial implementation of thread preemption.
Fernando Sahmkow
2019-10-15
1
-0
/
+10
*
Scheduler: Add protections for Yield bombing
Fernando Sahmkow
2019-10-15
1
-7
/
+9
*
Kernel: Style and Corrections
Fernando Sahmkow
2019-10-15
1
-30
/
+48
*
Comment and reorganize the scheduler
Fernando Sahmkow
2019-10-15
1
-93
/
+71
*
Implement a new Core Scheduler
Fernando Sahmkow
2019-10-15
1
-155
/
+294
*
kernel: Handle page table switching within MakeCurrentProcess()
Lioncash
2019-04-07
1
-1
/
+0
*
kernel/scheduler: Remove unused parameter to AddThread()
Lioncash
2019-03-30
1
-1
/
+1
*
kernel/scheduler: Use deduction guides on mutex locks
Lioncash
2019-03-30
1
-8
/
+8
*
Fixes and corrections on formatting.
Fernando Sahmkow
2019-03-27
1
-6
/
+9
*
Use MultiLevelQueue instead of old ThreadQueueList
Fernando Sahmkow
2019-03-27
1
-17
/
+22
*
core: Move PageTable struct into Common.
bunnei
2019-03-17
1
-1
/
+1
*
kernel/thread: Migrate WaitCurrentThread_Sleep into the Thread interface
Lioncash
2019-03-16
1
-4
/
+2
*
kernel/scheduler: Pass in system instance in constructor
Lioncash
2019-03-04
1
-7
/
+7
*
core_timing: Convert core timing into a class
Lioncash
2019-02-16
1
-1
/
+1
*
core_timing: Rename CoreTiming namespace to Core::Timing
Lioncash
2019-02-12
1
-1
/
+1
*
scheduler: Avoid manual Reschedule call
Zach Hilman
2018-12-04
1
-10
/
+8
*
scheduler: Only work steal higher priority threads from other cores
Zach Hilman
2018-12-03
1
-21
/
+17
*
svc: Avoid performance-degrading unnecessary reschedule
Zach Hilman
2018-12-02
1
-1
/
+2
*
scheduler: Add explanations for YieldWith and WithoutLoadBalancing
Zach Hilman
2018-11-22
1
-4
/
+57
*
svc: Implement yield types 0 and -1
Zach Hilman
2018-11-19
1
-0
/
+18
*
svc: Implement svcGetInfo command 0xF0000002
Lioncash
2018-10-26
1
-3
/
+25
*
kernel/thread: Use a regular pointer for the owner/current process
Lioncash
2018-10-10
1
-4
/
+4
*
kernel/thread: Make all instance variables private
Lioncash
2018-10-04
1
-18
/
+18
*
kernel/process: Make data member variables private
Lioncash
2018-09-30
1
-1
/
+1
*
kernel/scheduler: Take ARM_Interface instance by reference in the constructor
Lioncash
2018-09-25
1
-7
/
+7
*
core: Namespace all code in the arm subdirectory under the Core namespace
Lioncash
2018-08-25
1
-1
/
+1
*
scheduler: Make HaveReadyThreads() a const member function
Lioncash
2018-08-12
1
-1
/
+1
*
kernel: Remove unnecessary includes
Lioncash
2018-07-31
1
-0
/
+4
*
Merge pull request #751 from Subv/tpidr_el0
bunnei
2018-07-21
1
-0
/
+3
|
\
|
*
CPU: Save and restore the TPIDR_EL0 system register on every context switch.
Subv
2018-07-21
1
-0
/
+3
*
|
thread: Convert ThreadStatus into an enum class
Lioncash
2018-07-20
1
-8
/
+8
|
/
*
core/memory, core/hle/kernel: Use std::move where applicable
Lioncash
2018-07-19
1
-1
/
+3
*
scheduler: Clear exclusive state when switching contexts
MerryMage
2018-07-16
1
-0
/
+1
*
Rename logging macro back to LOG_*
James Rowe
2018-07-03
1
-3
/
+3
*
scheduler: Protect scheduling functions with a global mutex.
bunnei
2018-05-11
1
-0
/
+15
*
kernel: Migrate logging macros to fmt-compatible ones
Lioncash
2018-04-26
1
-3
/
+3
*
core: Move process creation out of global state.
bunnei
2018-03-14
1
-3
/
+4
*
scheduler: Cleanup based on PR feedback.
bunnei
2018-02-19
1
-1
/
+1
*
kernel: Add Scheduler, which encapsulates the scheduling loading from Thread module.
bunnei
2018-02-18
1
-0
/
+134