aboutsummaryrefslogtreecommitdiff
path: root/gdbstub.c
AgeCommit message (Expand)AuthorFilesLines
2020-01-08chardev: Use QEMUChrEvent enum in IOEventHandler typedefPhilippe Mathieu-Daudé1-1/+1
2019-08-28gdbstub: Fix handler for 'F' packetSandra Loosemore1-2/+6
2019-08-28gdbstub: Fix handling of '!' packet with new infraRamiro Polla1-1/+3
2019-08-16sysemu: Split sysemu/runstate.h off sysemu/sysemu.hMarkus Armbruster1-0/+1
2019-07-10gdbstub: revert to previous set_reg behaviourAlex Bennée1-6/+12
2019-07-10gdbstub: add some notes to the header commentAlex Bennée1-0/+6
2019-07-05general: Replace global smp variables with smp machine propertiesLike Xu1-0/+4
2019-06-18monitor: Replace monitor_init() with monitor_init_{hmp, qmp}()Kevin Wolf1-1/+1
2019-06-12gdbstub: Implement qemu physical memory modeJon Doron1-2/+60
2019-06-12gdbstub: Clear unused variables in gdb_handle_packetJon Doron1-9/+2
2019-06-12gdbstub: Implement target halted (? pkt) with new infraJon Doron1-10/+25
2019-06-12gdbstub: Implement generic set/query (Q/q pkt) with new infraJon Doron1-186/+373
2019-06-12gdbstub: Implement v commands with new infraJon Doron1-60/+110
2019-06-12gdbstub: Implement step (s pkt) with new infraJon Doron1-6/+19
2019-06-12gdbstub: Implement file io (F pkt) with new infraJon Doron1-22/+26
2019-06-12gdbstub: Implement read all registers (g pkt) with new infraJon Doron1-8/+23
2019-06-12gdbstub: Implement write all registers (G pkt) with new infraJon Doron1-10/+31
2019-06-12gdbstub: Implement read memory (m pkt) with new infraJon Doron1-16/+32
2019-06-12gdbstub: Implement write memory (M pkt) with new infraJon Doron1-18/+33
2019-06-12gdbstub: Implement get register (p pkt) with new infraJon Doron1-12/+38
2019-06-12gdbstub: Implement set register (P pkt) with new infraJon Doron1-9/+30
2019-06-12gdbstub: Implement breakpoint commands (Z/z pkt) with new infraJon Doron1-19/+67
2019-06-12gdbstub: Implement set_thread (H pkt) with new infraJon Doron1-30/+53
2019-06-12gdbstub: Implement continue with signal (C pkt) with new infraJon Doron1-5/+29
2019-06-12gdbstub: Implement continue (c pkt) with new infraJon Doron1-6/+19
2019-06-12gdbstub: Implement thread_alive (T pkt) with new infraJon Doron1-11/+32
2019-06-12gdbstub: Implement deatch (D pkt) with new infraJon Doron1-40/+61
2019-06-12gdbstub: Add infrastructure to parse cmd packetsJon Doron1-0/+195
2019-06-12Include qemu-common.h exactly where neededMarkus Armbruster1-0/+1
2019-06-12Include qemu/module.h where needed, drop it from qemu-common.hMarkus Armbruster1-0/+1
2019-06-11qemu-common: Move qemu_isalnum() etc. to qemu/ctype.hMarkus Armbruster1-0/+2
2019-05-28semihosting: move semihosting configuration into its own directoryAlex Bennée1-1/+1
2019-05-22gdbstub: Fix misuse of isxdigit()Markus Armbruster1-7/+7
2019-05-22gdbstub: Reject invalid RLE repeat countsMarkus Armbruster1-1/+5
2019-03-26gdbstub: fix vCont packet handling when no thread is specifiedLuc Michel1-2/+12
2019-02-15gdbstub: Send a reply to the vKill packet.Sandra Loosemore1-0/+1
2019-02-13char: allow specifying a GMainContext at opening timePaolo Bonzini1-2/+2
2019-02-05gdbstub: allow killing QEMU via vKill commandMax Filippov1-0/+4
2019-01-29gdbstub: Simplify gdb_get_cpu_pid() to use cpu->cluster_indexPeter Maydell1-42/+4
2019-01-29gdbstub: fix gdb_get_cpu(s, pid, tid) when pid and/or tid are 0Luc Michel1-29/+43
2019-01-07gdbstub: add multiprocess extension supportLuc Michel1-0/+6
2019-01-07gdbstub: gdb_set_stop_cpu: ignore request when process is not attachedLuc Michel1-0/+10
2019-01-07gdbstub: processes initialization on new peer connectionLuc Michel1-5/+15
2019-01-07gdbstub: add support for vAttach packetsLuc Michel1-0/+35
2019-01-07gdbstub: add support for extended mode packetLuc Michel1-0/+3
2019-01-07gdbstub: add multiprocess support to 'D' packetsLuc Michel1-7/+53
2019-01-07gdbstub: add multiprocess support to gdb_vm_state_change()Luc Michel1-3/+12
2019-01-07gdbstub: add multiprocess support to Xfer:features:read:Luc Michel1-20/+28
2019-01-07gdbstub: add multiprocess support to (f|s)ThreadInfo and ThreadExtraInfoLuc Michel1-10/+27
2019-01-07gdbstub: add multiprocess support to 'sC' packetsLuc Michel1-3/+9