[PATCH] [WineDbg]: added implementation of qSupported request

Eric Pouech eric.pouech at orange.fr
Wed Apr 30 14:28:13 CDT 2008




A+
---

 programs/winedbg/gdbproxy.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/programs/winedbg/gdbproxy.c b/programs/winedbg/gdbproxy.c
index 0f95056..a47f9ca 100644
--- a/programs/winedbg/gdbproxy.c
+++ b/programs/winedbg/gdbproxy.c
@@ -1766,6 +1766,12 @@ static enum packet_return packet_query(struct gdb_context* gdbctx)
     case 'S':
         if (strncmp(gdbctx->in_packet, "Symbol::", gdbctx->in_packet_len) == 0)
             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;
     case 'T':
         if (gdbctx->in_packet_len > 15 &&





More information about the wine-patches mailing list