summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/debugger/wait_tree.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Threading: Added some utility functions and const correctness.Subv2016-12-041-1/+1
|
* Threading: Reworked the way our scheduler works.Subv2016-12-041-1/+1
| | | | | | | | | | Threads will now be awakened when the objects they're waiting on are signaled, instead of repeating the WaitSynchronization call every now and then. The scheduler is now called once after every SVC call, and once after a thread is awakened from sleep by its timeout callback. This new implementation is based off reverse-engineering of the real kernel. See https://gist.github.com/Subv/02f29bd9f1e5deb7aceea1e8f019c8f4 for a more detailed description of how the real kernel handles rescheduling.
* implement wait tree widgetwwylele2016-09-221-0/+417