diff options
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2052,6 +2052,13 @@ int gdbserver_start(const char *device) return 0; } +void gdbserver_cleanup(void) +{ + if (gdbserver_state) { + put_packet(gdbserver_state, "W00"); + } +} + static void register_types(void) { type_register_static(&char_gdb_type_info); |