aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Handles/KThread.cs
AgeCommit message (Collapse)Author
2018-06-10Rename Ryujinx.Core to Ryujinx.HLE and add a separate project for a future ↵gdkchan
LLE implementation
2018-05-15Fix some races in SvcThreadSync and change the way how yield worksgdkchan
2018-05-14Some improvements to SetThreadCoreMask, simplified implementation of wait listsgdkchan
2018-05-13Better implementation of SetThreadCoreMask that allows changing the Core ↵gdkchan
Mask (untested, no clue if it actually works)
2018-05-13Initial work to support changing thread core on the scheduler, also some ↵gdkchan
cond var priority fixes
2018-04-24Improved logging (#103)gdkchan
2018-04-21Implement the synchronization primitives like the Horizon kernel does (#97)gdkchan
* Started to work in improving the sync primitives * Some fixes * Check that the mutex address matches before waking a waiting thread * Add MutexOwner field to keep track of the thread owning the mutex, update wait list when priority changes, other tweaks * Add new priority information to the log * SvcSetThreadPriority should update just the WantedPriority
2018-04-18[HLE/Kernel] Somewhat improved sync primitivesgdkchan
2018-03-19[WIP] Add support for events (#60)gdkchan
* Add support for events, move concept of domains to IpcService * Support waiting for KThread, remove some test code, other tweaks * Use move handle on NIFM since I can't test that now, it's better to leave it how it was