aboutsummaryrefslogtreecommitdiff
path: root/src/core/debugger
AgeCommit message (Collapse)Author
2022-06-14kernel: implement KProcess suspensionLiam
2022-06-13Merge pull request #8446 from liamwhite/cmd-gdbMorph
core/debugger: support operation in yuzu-cmd
2022-06-12core/debugger: allow remote connectionsLiam
2022-06-11gdbstub_arch: Add missing virtual destructorLioncash
The class is used polymorphically, so it's undefined behavior to delete instances of GDBStubA64 and GDBStubA32 from the base class pointer.
2022-06-10core/debugger: fix a number of shutdown deadlocksLiam
2022-06-06core/debugger: fix asio write usageLiam
2022-06-06core/debugger: fix crash due to incorrect lambda captureLiam
2022-06-03gdbstub: add missing library list commandLiam
2022-06-02Merge pull request #8410 from liamwhite/thread-namesMai M
gdbstub: Support reading guest thread names
2022-06-01core/debugger: Support reading guest thread namesLiam
2022-06-01Merge pull request #8409 from liamwhite/tdesc-fixMai M
gdbstub: fix target descriptions
2022-06-01Merge pull request #8402 from liamwhite/better-stepMorph
core/debugger: Improved stepping mechanism and misc fixes
2022-06-01gdbstub: fix target descriptionsLiam
2022-06-01Merge pull request #8404 from Morph1984/virtualliamwhite
core/debugger: Define defaulted virtual destructors
2022-06-01core/debugger: Define defaulted virtual destructorsMorph
Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions.
2022-06-01core/debugger: Improved stepping mechanism and misc fixesLiam
2022-06-01gdbstub: Explicitly cast return type to u8Morph
Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8.
2022-06-01core/debugger: Implement new GDB stub debuggerLiam