On 4/7/20 10:01 PM, Rémi Bernon wrote:
On 4/7/20 7:34 PM, Rémi Bernon wrote:
@@ -886,6 +891,8 @@ static enum packet_return packet_reply_status(struct gdb_context* gdbctx) packet_reply_open(gdbctx); packet_reply_add(gdbctx, "T"); packet_reply_val(gdbctx, signal_from_debug_event(&gdbctx->de), 1); + if (gdbctx->de.dwDebugEventCode == CREATE_THREAD_DEBUG_EVENT) + packet_reply_add(gdbctx, "create:");
This should actually be "create:;", to fit in the semicolon-separated list. I'll update and resend this one.
On second thought this is not really useful after all, gdb doesn't even send that request by default, I think I added it for lldb. Please, just ignore this patch.
I believe the referenced bug is still already fixed by the previous patches, though.