aboutsummaryrefslogtreecommitdiff
path: root/gdbstub.c
AgeCommit message (Expand)Author
2021-02-08gdbstub: Fix handle_query_xfer_auxvRichard Henderson
2021-01-18gdbstub: ensure we clean-up when terminatedAlex Bennée
2021-01-18gdbstub: drop gdbserver_cleanup in favour of gdb_exitAlex Bennée
2021-01-18gdbstub: drop CPUEnv from gdb_exit()Alex Bennée
2021-01-18gdbstub: add support to Xfer:auxv:read: packetLirong Yuan
2020-12-15gdbstub: Correct misparsing of vCont C/S requestsPeter Maydell
2020-10-06replay: create temporary snapshot at debugger connectionPavel Dovgalyuk
2020-10-06gdbstub: add reverse continue support in replay modePavel Dovgalyuk
2020-10-06gdbstub: add reverse step support in replay modePavel Dovgalyuk
2020-08-21trace: switch position of headers to what Meson requiresPaolo Bonzini
2020-07-21qom: Change object_get_canonical_path_component() not to mallocMarkus Armbruster
2020-05-06gdbstub/linux-user: support debugging over a unix socketAlex Bennée
2020-05-06gdbstub: eliminate gdbserver_fd globalAlex Bennée
2020-04-07gdbstub: fix compiler complainingDenis Plotnikov
2020-03-17gdbstub: Fix single-step issue by confirming 'vContSupported+' feature to gdbChangbin Du
2020-03-17gdbstub: do not split gdb_monitor_write payloadDamien Hedde
2020-03-17gdbstub: change GDBState.last_packet to GByteArrayDamien Hedde
2020-03-17gdbstub: extend GByteArray to read register helpersAlex Bennée
2020-03-17gdbstub: move mem_buf to GDBState and use GByteArrayAlex Bennée
2020-03-17gdbstub: move str_buf to GDBState and use GStringAlex Bennée
2020-03-17gdbstub: stop passing GDBState * around and use globalAlex Bennée
2020-03-17gdbstub: make GDBState static and have common init functionAlex Bennée
2020-03-06hmp: Fail gracefully if chardev is already in useKevin Wolf
2020-01-08chardev: Use QEMUChrEvent enum in IOEventHandler typedefPhilippe Mathieu-Daudé
2019-08-28gdbstub: Fix handler for 'F' packetSandra Loosemore
2019-08-28gdbstub: Fix handling of '!' packet with new infraRamiro Polla
2019-08-16sysemu: Split sysemu/runstate.h off sysemu/sysemu.hMarkus Armbruster
2019-07-10gdbstub: revert to previous set_reg behaviourAlex Bennée
2019-07-10gdbstub: add some notes to the header commentAlex Bennée
2019-07-05general: Replace global smp variables with smp machine propertiesLike Xu
2019-06-18monitor: Replace monitor_init() with monitor_init_{hmp, qmp}()Kevin Wolf
2019-06-12gdbstub: Implement qemu physical memory modeJon Doron
2019-06-12gdbstub: Clear unused variables in gdb_handle_packetJon Doron
2019-06-12gdbstub: Implement target halted (? pkt) with new infraJon Doron
2019-06-12gdbstub: Implement generic set/query (Q/q pkt) with new infraJon Doron
2019-06-12gdbstub: Implement v commands with new infraJon Doron
2019-06-12gdbstub: Implement step (s pkt) with new infraJon Doron
2019-06-12gdbstub: Implement file io (F pkt) with new infraJon Doron
2019-06-12gdbstub: Implement read all registers (g pkt) with new infraJon Doron
2019-06-12gdbstub: Implement write all registers (G pkt) with new infraJon Doron
2019-06-12gdbstub: Implement read memory (m pkt) with new infraJon Doron
2019-06-12gdbstub: Implement write memory (M pkt) with new infraJon Doron
2019-06-12gdbstub: Implement get register (p pkt) with new infraJon Doron
2019-06-12gdbstub: Implement set register (P pkt) with new infraJon Doron
2019-06-12gdbstub: Implement breakpoint commands (Z/z pkt) with new infraJon Doron
2019-06-12gdbstub: Implement set_thread (H pkt) with new infraJon Doron
2019-06-12gdbstub: Implement continue with signal (C pkt) with new infraJon Doron
2019-06-12gdbstub: Implement continue (c pkt) with new infraJon Doron
2019-06-12gdbstub: Implement thread_alive (T pkt) with new infraJon Doron
2019-06-12gdbstub: Implement deatch (D pkt) with new infraJon Doron