winedbg: Added implementation of qSupported request.
This commit is contained in:
parent
6f84b1c640
commit
5d90e60ed5
|
@ -1766,6 +1766,12 @@ static enum packet_return packet_query(struct gdb_context* gdbctx)
|
||||||
case 'S':
|
case 'S':
|
||||||
if (strncmp(gdbctx->in_packet, "Symbol::", gdbctx->in_packet_len) == 0)
|
if (strncmp(gdbctx->in_packet, "Symbol::", gdbctx->in_packet_len) == 0)
|
||||||
return packet_ok;
|
return packet_ok;
|
||||||
|
if (strncmp(gdbctx->in_packet, "Supported", gdbctx->in_packet_len) == 0)
|
||||||
|
{
|
||||||
|
packet_reply_open(gdbctx);
|
||||||
|
packet_reply_close(gdbctx);
|
||||||
|
return packet_done;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'T':
|
case 'T':
|
||||||
if (gdbctx->in_packet_len > 15 &&
|
if (gdbctx->in_packet_len > 15 &&
|
||||||
|
|
Loading…
Reference in New Issue