[debugger enhance] don't block gdbserver thread while executing (#989)

Allow to set break point again when all break points are removed and
wasm app starts running.
This commit is contained in:
Xu Jun
2022-02-16 17:35:35 +08:00
committed by GitHub
parent 985dea9493
commit 3fe191b0df
14 changed files with 424 additions and 221 deletions

View File

@ -14,6 +14,9 @@ wasm_debug_handler_init();
void
wasm_debug_handler_deinit();
void
handle_interrupt(WASMGDBServer *server);
void
handle_generay_set(WASMGDBServer *server, char *payload);
@ -58,4 +61,7 @@ handle_kill_request(WASMGDBServer *server, char *payload);
void
handle____request(WASMGDBServer *server, char *payload);
void
send_thread_stop_status(WASMGDBServer *server, uint32 status, korp_tid tid);
#endif