aboutsummaryrefslogtreecommitdiff
path: root/gdbstub/trace-events
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-10-04 11:06:22 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2023-10-07 19:02:59 +0200
commit3f7d1bdab0e98190245394875acf0d6d04b5de5b (patch)
treeae96c6944ebc3a5cb23e2c98b20c36ac1252af55 /gdbstub/trace-events
parent0017c64e1ce298796caee2d38bde9d7fc59a1510 (diff)
downloadqemu-3f7d1bdab0e98190245394875acf0d6d04b5de5b.zip
qemu-3f7d1bdab0e98190245394875acf0d6d04b5de5b.tar.gz
qemu-3f7d1bdab0e98190245394875acf0d6d04b5de5b.tar.bz2
gdbstub: Rename 'softmmu' -> 'system'
We have gdbstub/user.c for user emulation code, use gdbstub/system.c for system emulation part. Rename s/softmmu/system/ in meson and few comments. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231004090629.37473-8-philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'gdbstub/trace-events')
-rw-r--r--gdbstub/trace-events2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbstub/trace-events b/gdbstub/trace-events
index 7bc79a7..4fd126a 100644
--- a/gdbstub/trace-events
+++ b/gdbstub/trace-events
@@ -28,5 +28,5 @@ gdbstub_err_checksum_invalid(uint8_t ch) "got invalid command checksum digit: 0x
gdbstub_err_checksum_incorrect(uint8_t expected, uint8_t got) "got command packet with incorrect checksum, expected=0x%02x, received=0x%02x"
gdbstub_err_unexpected_runpkt(uint8_t ch) "unexpected packet (0x%02x) while target running"
-# softmmu.c
+# system.c
gdbstub_hit_watchpoint(const char *type, int cpu_gdb_index, uint64_t vaddr) "Watchpoint hit, type=\"%s\" cpu=%d, vaddr=0x%" PRIx64 ""